printf("%d",(printf("Hello")); What it returns?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / sreenivasulu buddhala
It returns Hello5.since the inner printf been called
first,it would return the number of characters printed
successfully.so the result is Hello5
| Is This Answer Correct ? | 1 Yes | 0 No |
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 |
Answer / milan
it will return hello5,firstly the inner printf executes
print the hello and return the number of characters printed
that is 5 which get printed by outer printf...
More info at:
http://clanguagestuff.blogspot.com/2011/02/what-printf-returns.html
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / atul shukla
printf("%d",(printf("Hello"));
result is for sure hello5
anywhere if braces () are used it uses stack to perform its
operation last open braces will sort first and
print 'hello'and printf return int value its protype is
int printf(const char *format [,argument,...]);
value return will be length of string thats 5
u can change hello to any other string it will print lenght
of string only
| Is This Answer Correct ? | 0 Yes | 0 No |
Are the expressions * ptr ++ and ++ * ptr same?
Is it fine to write void main () or main () in c?
52.write a “Hello World” program in “c” without using a semicolon? 53.Give a method to count the number of ones in a 32 bit number? 54.write a program that print itself even if the source file is deleted? 55.Given an unsigned integer, find if the number is power of 2?
How can I find out if there are characters available for reading?
can we change the default calling convention in c if yes than how.........?
What is function prototype in c with example?
print ur name 20,000 times without using inbuilt library functions like printf,scanf,gets,puts,getchar or putchar
what is the importance of spanning tree?
How to get string length of given string in c?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
How will you allocate memory to double a pointer?
write a program to print data of 5 five students with structures?