main()
{
printf("hello%d",print("QUARK test?"));
}
Answers were Sorted based on User's Feedback
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 |
Two's compliment of -5
What is the use of getchar functions?
What are dangling pointers? How are dangling pointers different from memory leaks?
write a c programme for add of two numbers with out use of arthematic operators
Is stack a keyword in c?
What are the key features of C?
when user give a number it multiply with 9 without useing '+' and '*' oprator
how to find sum of digits in C?
. 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
What is #include cctype?
What does a pointer variable always consist of?
What are pointers? Why are they used?