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 should I use standard library functions instead of writing my own?
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
what does static variable mean?
Explain the red-black trees?
Given a valid 24 hour format time find the combination of the value and write a program ,do not hard the value and if any other inputs provided should work with the logic implemented Input: 11:30 Output: 13:10 Input: 18:25 Output: 21:58
What is header file in c?
Why c is a procedural language?
What is a #include preprocessor?
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
Why does everyone say not to use gets?
int i=10; printf("%d %d %d", i, i=20, i);
What are the types of variables in c?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
In C programming, how do you insert quote characters (‘ and “) into the output screen?
What is the easiest sorting method to use?