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

Answers were Sorted based on User's Feedback



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

Answer / mytri

hello11QUARK test?

Is This Answer Correct ?    3 Yes 1 No

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

Answer / vanitha

QUARK test? hello 11

Is This Answer Correct ?    1 Yes 1 No

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

Answer / 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

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

Answer / rahul shrivastava

helloQUARK test?1

Is This Answer Correct ?    0 Yes 0 No

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

Answer / vinay

QUARK TEST

hello 10

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More C Interview Questions

Two's compliment of -5

4 Answers   Adobe,


What is the use of getchar functions?

0 Answers  


What are dangling pointers? How are dangling pointers different from memory leaks?

1 Answers  


write a c programme for add of two numbers with out use of arthematic operators

2 Answers  


Is stack a keyword in c?

0 Answers  


What are the key features of C?

6 Answers  


when user give a number it multiply with 9 without useing '+' and '*' oprator

4 Answers  


how to find sum of digits in C?

21 Answers   CTS, Infosys,


. Consider the following program main() { int a[5]={1,3,6,7,0}; int *b; b=&a[2]; } The value of b[-1] is (A) 1 (B) 3 (C) -6 (D) none

9 Answers   Oracle,


What is #include cctype?

0 Answers  


What does a pointer variable always consist of?

0 Answers  


What are pointers? Why are they used?

0 Answers  


Categories