printf("%d",(printf("Hello")); What it returns?
Answer Posted / kuldeep vishwakarma
printf("%d",(printf("Hello")));
ans: Hello5
printf("%d",(printf("Hello")));
ans: Hello5
printf("%d",(printf("Hello"));
ans: function call missing )
(because end parenthesis is not close)
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain what is a stream?
How do I convert a string to all upper or lower case?
How do you list files in a directory?
What is scope and lifetime of a variable in c?
Why use int main instead of void main?
What does #pragma once mean?
Which function in C can be used to append a string to another string?
Explain what is the difference between a string and an array?
Is it possible to initialize a variable at the time it was declared?
Explain Function Pointer?
What is a substring in c?
What is ctrl c called?
What is meant by realloc()?
What is realloc in c?
What is the use of volatile?