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
Explain what is the best way to comment out a section of code that contains comments?
Why is c faster?
code for replace tabs with equivalent number of blanks
How do we make a global variable accessible across files? Explain the extern keyword?
List some of the dynamic data structures in C?
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
What is the heap?
Why does notstrcat(string, "!");Work?
What is I ++ in c programming?
Why calloc is better than malloc?
What is a null string in c?
What is difference between main and void main?
What is the translation phases used in c language?
What is the difference between array and structure in c?
Does c have class?