what is the difference between #include<stdio.h> and
#include"stdio.h" ?

Answer Posted / mini bangar

when we write #include<stdio.h> preprocessor search for it in include directory directly.but when we write "stdio.h" precessor start searching for this header file from current directoryand then in parent directories.

Is This Answer Correct ?    25 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What oops means?

576


When should structures be passed by values or by references?

575


Explain #pragma statements.

600


Do you know the purpose of 'register' keyword?

638


Describe the header file and its usage in c programming?

615






List the difference between a "copy constructor" and a "assignment operator"?

576


When do we get logical errors?

632


In this assignment you are asked to write a multithreaded program to find the duplicates in an array of 10 million integers. The integers are between -5000,000 to 5000,000 and are generated randomly. Use 10 threads, each thread works on 1000,000 integers. Compare the time needed to accomplish the task with single thread of execution program. Do not include the time to fill the array with integers in the execution time.

2676


What is variable declaration and definition in c?

493


What is a lookup table in c?

619


Why is it that not all header files are declared in every C program?

675


What is the condition that is applied with ?: Operator?

654


WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..

1588


Is there any possibility to create customized header file with c programming language?

618


How can I invoke another program or command and trap its output?

608