summaryrefslogtreecommitdiff
path: root/wk4/lect/get.c
blob: 6e72d92e91a32f2ded84bccdabf725c6f3d0a8d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <cs50.h>
#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

int main(void)
{
    int n;
    printf("n: ");
    scanf("%i", *n);
}