what is the output on the screen?

int n;
n=printf("my name is %d",printf("kiran %d",printf("kumar")));
printf("\n %d \n",n);

Answer Posted / nish

kumarkiran 5my name is 7
n=12

Is This Answer Correct ?    1 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why do some versions of toupper act strangely if given an upper-case letter?

627


using only #include and #include Write a program in C that will read an input from the user and print it back to the user if it is a palindrome. The string ends when it encounters a whitespace. The input string is at most 30 characters. Assume the string has no spaces and distinguish between and lowercase. So madam is a palindrome, but MadAm is not a palindrome. Use scanf and %s to read the string. Sample Test: Enter a string: madam madam is a palindrome. Enter a string: 09023 09023 is not a palindrome.

1306


List the difference between a "copy constructor" and a "assignment operator"?

576


Explain how can I read and write comma-delimited text?

648


What is the benefit of using const for declaring constants?

581






int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above

740


What is a ternary operator in c?

646


What is sizeof array?

606


Explain high-order bytes.

670


Are c and c++ the same?

623


Define the scope of static variables.

601


What are the rules for the identifier?

667


What is strcmp in c?

594


What does sizeof int return?

588


Explain union.

633