/*what is the output for the code*/
void main()
{
int r;
r=printf("naveen");
r=printf();
printf("%d",r);
getch();
}
Answer / amegha
r=printf() sttmnt will produce an error as - too few
parameters in printf().
It needs any argument value.
r=printf("naveen") returns the no of characters printed.
here 6.
| Is This Answer Correct ? | 3 Yes | 0 No |
What is openmp in c?
Explain indirection?
How macro execution is faster than function ?
What is mean by data types in c?
please give me answer with details #include<stdio.h> main() { int i=1; i=(++i)*(++i)*(++i); printf("%d",i); getch(); }
Would you rather wait for the results of a quicksort, a linear search, or a bubble sort on a 200000 element array? 1) Quicksort 2) Linear Search 3) Bubble Sort
what is the return type of printf
#include<stdio.h> { printf("Hello"); } how compile time affects when we add additional header file <conio.h>.
plz answer....A program that takes 3 variables e.g a,b,c in as seperate parameters and rotates the values stored so that value goes a to b, b to c and c to a .
How do you access command-line arguments?
What is the memory allocated by the following definition ? int (*x)();
Not all reserved words are written in lowercase. TRUE or FALSE?