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
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
Explain how can type-insensitive macros be created?
What is the difference between the local variable and global variable in c?
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
Why is event driven programming or procedural programming, better within specific scenario?
What are header files in c programming?
What is ponter?
Are the expressions * ptr ++ and ++ * ptr same?
Why c is called a middle level language?
What is a program flowchart and explain how does it help in writing a program?
How #define works?
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
What does int main () mean?
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles
How to draw the flowchart for structure programs?