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 |
What is the purpose of type declarations?
program for following output using for loop? 1 2 2 3 3 3 4 4 4 4 5 5 5 5 5
How do we declare variables in c?
What will be result of the following program? void myalloc(char *x, int n) { x= (char *)malloc(n*sizeof(char)); memset(x,\0,n*sizeof(char)); } main() { char *g="String"; myalloc(g,20); strcpy(g,"Oldstring"); printf("The string is %s",g); } a) The string is : String b) Run time error/Core dump c) The string is : Oldstring d) Syntax error during compilation e) None of these
What is sizeof int?
What is a 'null pointer assignment' error?
How do I access command-line arguments?
Write the program for displaying the ten most frequent words in a file such that your program should be efficient in all complexity measures.
How can I use a preprocessorif expression to ?
What are the various types of control structures in programming?
Does c have an equivalent to pascals with statement?
difference between native and cross compilers