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);
Answer Posted / nish
kumarkiran 5my name is 7
n=12
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is the use of getchar() function?
i have a written test for microland please give me test pattern
What is use of #include in c?
What is the purpose of main( ) in c language?
Why c is called free form language?
Explain what math functions are available for integers? For floating point?
find the sum of two matrices and WAP for it.
I completed my B.tech (IT). Actually I want to develop virtual object that which will change software technology in the future. To develop virtual object what course I have to take. can I any professor to help me.
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
Where are the auto variables stored?
Iam a B.Tech graduate and completed my engineering in 2009, from 2005 to 2009 and after that i had done nothing.Now i want to do job and get into BPO field . Friends give me suggestions as what to say in interview... if they ask me that what would you had done ... these many years without doing job ??????? pls urgent
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
which is conditional construct a) if statement b) switch statement c) while/for d) goto
How to declare pointer variables?
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference