printf("%d",(printf("Hello")); What it returns?
Answer Posted / sangeetha
the inner printf statement will print Hello but the outer
printf is %d it will print an integer but we didnt call the
value it will give u the garbage value.and the output of the
program will be hello5.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Explain Function Pointer?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
how to write optimum code to divide a 50 digit number with a 25 digit number??
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
What is preprocessor with example?
What is sizeof return in c?
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
What is volatile, register definition in C
What 'lex' does?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
How to write a program for machine which is connected with server for that server automatically wants to catch the time for user of that machine?
Can we compile a program without main() function?
What are the advantages of external class?
Explain what happens if you free a pointer twice?
What's the difference between constant char *p and char * constant p?