Answer Posted / anika
in i++ first there is display and then the value in the memory
gets increased by 1.in ++i first value is increased by 1 then
display is there
| Is This Answer Correct ? | 3 Yes | 3 No |
Post New Answer View All Answers
Can we declare a function inside a function in c?
What is the use of ?: Operator?
Is it possible to have a function as a parameter in another function?
how many key words availabel in c a) 28 b) 31 c) 32
How can you avoid including a header more than once?
Iam a B.Tech graduate and completed my engineering in 2009, from 2005 to 2009 and after that i had done nothing.Now i want to do job and get into BPO field . Friends give me suggestions as what to say in interview... if they ask me that what would you had done ... these many years without doing job ??????? pls urgent
Explain how can I prevent another program from modifying part of a file that I am modifying?
Is boolean a datatype in c?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
How can variables be characterized?
What is the difference between abs() and fabs() functions?
What is the process of writing the null pointer?
What is dangling pointer in c?
Explain can you assign a different address to an array tag?
string reverse using recursion