Statements in C

1
INPUT & OUTPUT Input scanf(“%d”,&a); Gets an integer value from the user and stores it under the name “a” Output printf(“%d”,a) Prints the value present in variable a on the screen

description

Statements in C For S-Teacher

Transcript of Statements in C

Page 1: Statements in C

INPUT & OUTPUTInput

scanf(“%d”,&a);Gets an integer value from the user and

stores it under the name “a”Output

printf(“%d”,a)Prints the value present in variable a on the

screen