printf("%d",(printf("Hello")); What it returns?

Answer Posted / vivek_akathara

if the statement is as shown above then it will show an
error due to incomplete parentheses(there are 3 opening and
2 closing)

once that is corrected then you will get the output as
hello5 for the reasons explained above.

Is This Answer Correct ?    7 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is graph in c?

561


Why do we use int main?

573


What is the size of empty structure in c?

568


What is pointer & why it is used?

572


Why is c not oop?

520






Write a Program to accept different goods with the number, price and date of purchase and display them

5381


Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol

641


What is pragma c?

582


Explain about the constants which help in debugging?

827


process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,

1862


The program will first compute the tax you owe based on your income. User is prompted to enter income. Program will compute the total amount of tax owed based on the following: Income Tax 0 - $45,000 = 0.15 x income $45,001 - $90,000 = 6750 + 0.20 x (income – 45000) $90,001 - $140,000 = 15750 + 0.26 x (income – 90000) $140,001 - $200,000 = 28750 + 0.29 x (income – 140000) Greater than $200,000 = 46150 + 0.33 x (income – 200000) Dollar amounts should be in dollars and cents (float point numbers with two decimals shown). Tax is displayed on the screen.

1031


1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321

3103


What is typedef example?

597


List some of the static data structures in C?

740


count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array

643