what is the difference between postfix and prefix unary
increment operators?
Answer Posted / rukmanee
In prefix operator,the value of the operand increase by one
and then assign the new value to that operand and print
it.In postfix operator,the value of the operand is assigned
at first and then increment it's value by one.
This is the difference between postfix and prefix unary
increment operators.
| Is This Answer Correct ? | 8 Yes | 1 No |
Post New Answer View All Answers
Which built-in library function can be used to match a patter from the string?
Explain can you assign a different address to an array tag?
What is the difference between array_name and &array_name?
Explain the meaning of keyword 'extern' in a function declaration.
How can I invoke another program or command and trap its output?
Is there any possibility to create customized header file with c programming language?
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
What do you know about the use of bit field?
What does s c mean on snapchat?
What is an array? What the different types of arrays in c?
What is 02d in c?
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.
Which is the best website to learn c programming?
Why do we use namespace feature?
How to delete a node from linked list w/o using collectons?