int a=20;
int b=30;
int c=40;
printf("%d%d%d");
what will be the output?

Answer Posted / neethu

%d%d%d

Is This Answer Correct ?    3 Yes 10 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Tell me what are bitwise shift operators?

664


Do you know pointer in c?

596


Explain what are the advantages and disadvantages of a heap?

603


What is a structural principle?

646


What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?

911






Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?

673


the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above

727


write a program to create a sparse matrix using dynamic memory allocation.

4377


Explain what is wrong in this statement?

641


What is malloc return c?

603


Difference between macros and inline functions? Can a function be forced as inline?

718


What are global variables?

654


Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?

987


What is the difference between strcpy() and memcpy() function in c programming?

631


FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.

1208