Q:

Write a C program and flowchart to Enter and store the integer

0

Write a C program and flowchart to Enter and store the integer

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

#include 
int main()
{
int a;
printf("Enter an integer: ");
// reads and stores input
scanf("%d", &a);
// displays output
printf("You entered: %d", a);
return 0;
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now