what is the Output?
int a=4 b=3;
printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++);
printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);
Answer Posted / ii yr information technology
466799
3200-2-3
| Is This Answer Correct ? | 29 Yes | 14 No |
Post New Answer View All Answers
How to declare pointer variables?
where are auto variables stored? What are the characteristics of an auto variable?
The purpose of this exercise is to benchmark file writing and reading speed. This exercise is divided into two parts. a). Write a file character by character such that the total file size becomes approximately >10K. After writing close the file handler, open a new stream and read the file character by character. Record both times. Execute this exercise at least 4 times b). Create a buffer capable of storing 100 characters. Now after generating the characters, first store them in the buffer. Once the buffer is filled up, store all the elements in the file. Repeat the process until the total file size becomes approximately >10K.While reading read a while line, store it in buffer and once buffer gets filled up, display the whole buffer. Repeat the exercise at least 4 times with different size of buffer (50, 100, 150 …). Records the times. c). Do an analysis of the differences in times and submit it in class.
What are the types of data types and explain?
What is volatile c?
How can you access memory located at a certain address?
What are extern variables in c?
Explain goto?
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
How can I ensure that integer arithmetic doesnt overflow?
What are derived data types in c?
What is #pragma statements?
What are the functions to open and close the file in c language?
Can i use “int” data type to store the value 32768? Why?