what is the output on the screen?
int n;
n=printf("my name is %d",printf("kiran %d",printf("kumar")));
printf("\n %d \n",n);
Answers were Sorted based on User's Feedback
Answer / raghav
hi the answer is bit scribbling
answer is
kumar kiran 5my name is 7/n12/n
| Is This Answer Correct ? | 8 Yes | 3 No |
Answer / krishnachaitanya
n is 12.
because every printf() statement returns an integer value.
in the above code i.e printf("my name is %d",printf("kiran
%d",printf("kumar")));
kiran returns 5
the correct ans is
kumarkiran5 my name is 6
n=12
| Is This Answer Correct ? | 2 Yes | 4 No |
Answer / kirankumaryakkala
see the printf defination at stdio.h
its, int printf(const char *,...)
//printf returns no of charecters written to the screen
// and ... represents variable no of arguments
//now every printf returns one integer corresponding to the
no of charecters written on the screen.
its simple , now u can guess
try it.
| Is This Answer Correct ? | 1 Yes | 7 No |
Explain how can I make sure that my program is the only one accessing a file?
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
Explain union.
what is difference between ANSI structure and C99 Structure?
a=5 a=a++/++a
Write a program that an operator and two operands read from input operand operator on the implementation and results display.
Why c is called top down?
Explain the process of converting a Tree into a Binary Tree.
What is the main differences between C and Embedded C?
write a program to gat the digt sum of a number (et. 15= >1+5=6)
matrix multiplication fails introspect the causes for its failure and write down the possible reasons for its failurein c language.
What is the purpose of void pointer?