include <stdio.h></stdio.h>
Let’s say
int main()
{
printf(“Hello World”);
return 0
}
What is the run order of this program
What are the three basic functions that take place in every C program
What is the keyboard input stream called
stdin
What is the output stream
stdout
What is the formatted input function
scanf()
What is the formatted output function
printf()
What are the unformatted input functions
getchar()
gets()
What are the unformatted output functions
putchar()
puts()
How would you read an integer from stdin
include main <stdio.h></stdio.h>
int main() {
int inputFromUser;
scanf(“%d”, &inputFromUser);
return 0;
}