#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;
}
Integer:
scanf("%d", &intVariable);
printf("%d", intVariable);
Float:
scanf("%f", &floatVariable);
printf("%f", floatVariable);
Character:
scanf("%c", &charVariable);
printf("%c", charVariable);
Word:
scanf("%s", &strVariable)
printf("%s" , strVariable)
Sentence:
scanf(" %[^
]s", &strVariable); // in same line
scanf("%[^
]s", &strVariable); // with new line
printf("%s", strVariable)
Integer: Input: scanf("%d", &intVariable); Output: printf("%d", intVariable);
Float: Input: scanf("%f", &floatVariable); Output: printf("%f", floatVariable);
Character: Input: scanf("%c", &charVariable); Output: printf("%c", charVariable);
scanf("%d", &var);