which one is not preprocessor directive
a)#if b)#elif c)#undef d)#pragma
Answer Posted / yashwanth
all are preprocessor directives
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
In C language what is a 'dangling pointer'?
Which header file should you include if you are to develop a function which can accept variable number of arguments?
the number of measuring units from a arbitrary starting point in a record area or control block to some other point a) branching b) recording pointer c) none d) offset
all c language question
What is a char in c?
What is a static function in c?
What is #line used for?
Why n++ execute faster than n+1 ?
What are structures and unions? State differencves between them.
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.
Which programming language is best for getting job 2020?
What is a protocol in c?
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
Are enumerations really portable?
What does %p mean?