What does %f mean c?
Answer / amit
%f mean in C is that it is a format specifier of float data type which store decimal value up to 4 bit ,simply it indicate data type
| Is This Answer Correct ? | 0 Yes | 0 No |
write a program to find the frequency of a number
I need a sort of an approximate strcmp routine?
what do the 'c' and 'v' in argc and argv stand for?
Can a file other than a .h file be included with #include?
Tell me about low level programming languages.
Explain what does a function declared as pascal do differently?
How to establish connection with oracle database software from c language?
How to develop software using "c" programming?
what is data structure?
simple program of graphics and their output display
Difference between Shallow copy and Deep copy?
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?