Related Posts
Telugu Video Tutorials – Notes – Shortcuts
Scanf Function :-
With the help of the function we can perform data entry operations at the time of program execution.
to read the any type of values
Syntax :
scanf(“format specifiers”, &varable name1, &variable name2……..);
Syntax 1:
read only 1value
scanf(“%d”,&a);
Syntax 2:
read multiple values
scanf(“%d %d”, &a, &b);
Extra Program Output :-