what is the value of b
if a=5;
b=++a + ++a
Answer Posted / harshfire92
b=14
| Is This Answer Correct ? | 55 Yes | 51 No |
Post New Answer View All Answers
Explain bit masking in c?
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?
Why do we use return in c?
What are the functions to open and close the file in c language?
Why pointers are used in c?
Where we use clrscr in c?
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.
write a program to print data of 5 five students with structures?
c program for searching a student details among 10 student details
Is null always defined as 0(zero)?
Why static is used in c?
How can I find out how much free space is available on disk?
What is a char c?
Difference between MAC vs. IP Addressing
What is the difference between declaring a variable by constant keyword and #define ing that variable?