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
Is null always defined as 0(zero)?
What is the difference between functions abs() and fabs()?
what is use of malloc and calloc?
Differentiate between static and dynamic modeling.
Why is it important to memset a variable, immediately after allocating memory to it ?
How to set file pointer to beginning c?
What is printf () in c?
What is the translation phases used in c language?
What are the loops in c?
What is the right type to use for boolean values in c? Is there a standard type?
What is the difference between procedural and declarative language?
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What is gets() function?
Write a program to print ASCII code for a given digit.
What are the two forms of #include directive?