/*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 THE DEFINATION OF IN TECHNOLOGY AND OFF TECHNOLOGY ?
WHAT IS C?
what are the uses of structure?
What is the advantage of a random access file?
How can I read and write comma-delimited text?
hOW Can I add character in to pointer array of characters char *a="indian"; ie I want to add google after indian in the char *a
How do you define structure?
Is a house a shell structure?
What is the use of linkage in c language?
a c code by using memory allocation for add ,multiply of sprase matrixes
Explain how do you determine the length of a string value that was stored in a variable?
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)