What is the meaning When we write "#include" what is # and
what does include does there???

Answer Posted / raghuveer

The # is the Pre-Processor. Means it is a special kind of
program that executed before the actual compilation of the
program. When it executed it performs several tasks like
defining etc. On such operation is the include. The include
tell that the current program requires certain inclusion of
files. Like #include<stdio.h>. Here we are directing the
pre-processor to include the stdio.h header file.

Is This Answer Correct ?    16 Yes 11 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

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.

1637


regarding pointers concept

1579


how to find anagram without using string functions using only loops in c programming

2720


What is c method?

539


I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...

9663






What are volatile variables in c?

525


What is wrong in this statement? scanf(ā€œ%dā€,whatnumber);

731


What are the disadvantages of external storage class?

594


Explain the use of 'auto' keyword

683


What is 'bus error'?

651


What is omp_num_threads?

587


What is break statement?

636


What is difference between structure and union in c programming?

575


What are the types of bitwise operator?

667


In a switch statement, what will happen if a break statement is omitted?

606