What will be the output of
x++ + ++x?
Answer Posted / dushmanta
it will gives u a garbage value according to u r compiler
| Is This Answer Correct ? | 15 Yes | 9 No |
Post New Answer View All Answers
Why we write conio h in c?
What is c variable?
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(); }
Is void a keyword in c?
What tq means in chat?
Explain what does it mean when a pointer is used in an if statement?
Explain what are multidimensional arrays?
What are structure types in C?
What are the types of pointers in c?
Explain what is meant by 'bit masking'?
What is the difference between strcpy() and memcpy() function in c programming?
What is switch in c?
Which function in C can be used to append a string to another string?
What is the time and space complexities of merge sort and when is it preferred over quick sort?
Why do we use pointer to pointer in c?