main()
{
int i=5;
printf("%d%d%d%d",i++,i--,i);
}
Answer Posted / vignesh1988i
some garbage value , 4,5,5...
why in this o/p garbage value is because only 3 parameters
are passed but we have assigned 4 control strings , where
one control string is useless, so for that compiler will
print garbage value....
| Is This Answer Correct ? | 2 Yes | 4 No |
Post New Answer View All Answers
If you know then define #pragma?
Stimulate calculator using Switch-case-default statement for two numbers
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
Why doesnt long int work?
What is the difference between class and object in c?
why programs in c are running with out #include
What is meant by 'bit masking'?
What is structure padding in c?
code for find determinent of amatrix
What is stack in c?
Why we write conio h in c?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
Can the size of an array be declared at runtime?
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 is #define size in c?