Write a C program and flowchart to Enter and store the integer
#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; }
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.

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