+ All Categories
Home > Education > Statements in C

Statements in C

Date post: 13-Dec-2014
Category:
Upload: prabhu-govind
View: 38 times
Download: 3 times
Share this document with a friend
Description:
Statements in C For S-Teacher
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
Transcript
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

Recommended