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 |
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
Write a program to show the change in position of a cursor using c
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result
what is diffrence between string and character array?
which will return integer? a) int*s ( ) b) ( int* ) s( ) c) int ( *s ) ( )
Explain why C language is procedural?
How do you sort filenames in a directory?
Difference between strcpy() and memcpy() function?
how do you redirect stdout value from a program to a file?
State two uses of pointers in C?
main() { int i=400,j=300; printf("%d..%d"); }
What are the advantages of using linked list for tree construction?