main()
{
printf("hello%d",print("QUARK test?"));
}

Answer Posted / vignesh1988i

QUARK test?hello1

first it prints the inner most printf statement and then and the comes to the second printf and returns the number of characters inside the " ". but this wat i think, may be wrong too




thank u.

Is This Answer Correct ?    1 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational

800


What are comments and how do you insert it in a C program?

732


What is sizeof int in c?

593


What is the difference between a string and an array?

701


What is a method in c?

616






What will the preprocessor do for a program?

578


What is an operator?

652


What is the purpose of & in scanf?

587


How can this be legal c?

645


What is a double c?

580


What would be an example of a structure analogous to structure c?

570


What is the difference between union and anonymous union?

829


What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25

1485


How many identifiers are there in c?

571


What is a void pointer? When is a void pointer used?

614