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

hi the answer is bit scribbling
answer is
kumar kiran 5my name is 7/n12/n

Is This Answer Correct ?    8 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to draw the flowchart for structure programs?

8759


what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?

1446


What is the general form of #line preprocessor?

581


When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?

799


What are structures and unions? State differencves between them.

610






Once I have used freopen, how can I get the original stdout (or stdin) back?

620


What does s c mean on snapchat?

579


Explain what is the difference between a free-standing and a hosted environment?

631


Explain how can I avoid the abort, retry, fail messages?

585


Stimulate calculator using Switch-case-default statement for two numbers

2442


What is the difference between functions abs() and fabs()?

643


You have given 2 array. You need to find whether they will create the same BST or not. For example: Array1:10 5 20 15 30 Array2:10 20 15 30 5 Result: True Array1:10 5 20 15 30 Array2:10 15 20 30 5 Result: False One Approach is Pretty Clear by creating BST O(nlogn) then checking two tree for identical O(N) overall O(nlogn) ..we need there exist O(N) Time & O(1) Space also without extra space .Algorithm ?? DevoCoder guest Posted 3 months ago # #define true 1 #define false 0 int check(int a1[],int a2[],int n1,int n2) { int i; //n1 size of array a1[] and n2 size of a2[] if(n1!=n2) return false; //n1 and n2 must be same for(i=0;ia1[i+1]) && (a2[i]>a2[i+1]) ) ) return false; } return true;//assumed that each array doesn't contain duplicate elements in themshelves }

2710


Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?

649


Write the syntax and purpose of a switch statement in C.

618


What are the different types of errors?

635