printf("%d",(printf("Hello")); What it returns?
Answer Posted / 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 |
Post New Answer View All Answers
What is array within structure?
Why does not c have an exponentiation operator?
What is the difference between memcpy and memmove?
What is break statement?
What are qualifiers?
What is a null pointer in c?
Should a function contain a return statement if it does not return a value?
What is the scope of static variable in c?
formula to convert 2500mmh2o into m3/hr
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
How macro execution is faster than function ?
What is the difference between a string and an array?
What is New modifiers?
Write a program to swap two numbers without using third variable in c?
What is the purpose of sprintf() function?