John Mavrick's Garden

Search IconIcon to open search

Last updated Unknown

Status: Tags: Links: C MOC


C User Input

1
2
3
4
5
6
7
8
char name[];
int age;

printf("What is your name: "); 
scanf("%s", name); &name[0];

printf("Enter your age: ");
scanf("%d", &age); // & is used to give address to write the input

Backlinks

1
list from C User Input AND !outgoing(C User Input)

References:

Created:: 2021-10-07 19:50


Interactive Graph