Answer Posted / hrpynux@gmail.com
The expression n++ requires a single machine instruction such as INR to carry out the increment operation whereas, n+1 requires more instructions to carry out this operation.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
What is the best way of making my program efficient?
How do you generate random numbers in C?
How can I do serial ("comm") port I/O?
What is malloc return c?
What are header files why are they important?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
Is this program statement valid? INT = 10.50;
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
What are reserved words?
What does c value mean?
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
What are the storage classes in C?
How do I convert a string to all upper or lower case?