Answers for "simple program to take input from user in c"

C
4

how to get user input in c

#include <stdio.h>
//this is for storing numbers
int main(){
	
    int age; //this makes a vairable for you to store the value in
    printf("enter in your age: "); //this prints a prompt for the user
    scanf("%d", &age); //this takes in the argument given and stores it
                       //into the address of age

	return 0;
}
Posted by: Guest on June-07-2020

Code answers related to "simple program to take input from user in c"

Code answers related to "C"

Browse Popular Code Answers by Language