
Scanf () Function..
Syntax:
scanf("format characters",&variable1,&variable2, .......);
ex:
a) scanf("%d", &a);
b) scanf("%d %d", &a, &b);
c) scanf("%d %f %c, ", &a, &b, &c);
& -> address of operator
Use of scanf function in C
-> Scanf is an input function , the header for which is stdio.h
-> This function tak...