helllo sir
give me some information of the basic information the
c as printf ,scanf , %d ,%f and why is the main use of
these.

Answer Posted / guest

In c, to get and to print the reqired information we use
the function printf()
and the scanf() function is used for inputting the data int
the variables declared before.
and %d character is used to display the integer type
variables in the o/p
and the %f character is used to print the float type
variables int hte o/p.

Is This Answer Correct ?    5 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is extern keyword in c?

631


What is the difference between text and binary i/o?

583


What is the use of gets and puts?

590


Can you add pointers together? Why would you?

632


write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.

3493






what is the format specifier for printing a pointer value?

605


write a c program for swapping two strings using pointer

2081


What is wrong with this initialization?

575


Why c language?

633


What is ponter?

761


What is double pointer?

552


What is a macro in c preprocessor?

616


#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }

706


What does a function declared as pascal do differently?

595


How can I get random integers in a certain range?

604