int a=20;
int b=30;
int c=40;
printf("%d%d%d");
what will be the output?
Answer Posted / senthil
will print junk values, as no arguments after printf string present.
| Is This Answer Correct ? | 9 Yes | 2 No |
Post New Answer View All Answers
What is indirection?
Why is c so important?
formula to convert 2500mmh2o into m3/hr
Explain what does the format %10.2 mean when included in a printf statement?
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
What are shell structures used for?
Is r written in c?
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
What is the difference between test design and test case design?
Is null equal to 0 in sql?
Which is the best website to learn c programming?
write a program to find out prime number using sieve case?
What is a sequential access file?
Explain how can I convert a number to a string?