Answer Posted / rukmanee
In case of i++, it'll first assign the value of i and then
increment it's value by one. But in case of ++i, it 'll
first increment the value of i by 1 and then assign the new
value of i.This is the difference between i++ and ++i.
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
write a program which the o/p should b in such a way that s triangle if I/p is 3,a Square/rectangle if I/P=4,a pentagon if I/P=5 and so on...forget about the I/P which is less than 3
What's the total generic pointer type?
Is it better to bitshift a value than to multiply by 2?
How many keywords (reserve words) are in c?
Why is sizeof () an operator and not a function?
What is the best organizational structure?
What are the types of functions in c?
Multiply an Integer Number by 2 Without Using Multiplication Operator
Why is #define used?
In a switch statement, what will happen if a break statement is omitted?
Can you add pointers together? Why would you?
Why & is used in c?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
How do you search data in a data file using random access method?
What are the types of type specifiers?