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

Answer Posted / vishal

stdio.h> is a header file which available in include
directory of the system. When we write #include<stdio.h>
preprocessor search for it in include directory directly
and not out of this directory. But when we write "stdio.h"
precessor start searching for this header file from current
directory and then in parent directories. So if we write
our own stdio.h in the current directory and include in
program as #include"stdio.h" then our header will be
included instead of system header.

Is This Answer Correct ?    38 Yes 8 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Disadvantages of C language.

840


What is LINKED LIST? How can you access the last element in a linked list?

830


What's the best way of making my program efficient?

827


How to get string length of given string in c?

804


Badboy is defined who has ALL the following properties: Does not have a girlfriend and is not married. He is not more than 23 years old. The middle name should be "Singh" The last name should have more than 4 characters. The character 'a' should appear in the last name at least two times. The name of one of his brothers should be "Ram" Write a method: boolean isBadBoy(boolean hasGirlFriend , boolean isMarried, int age , String middleName , String lastName , String[] brotherName); isHaveGirlFriend is true if the person has a girlfriend isMarried is true if the person is married age is the age of the person middleName is the middle name of the person lastName is the last name of the person brotherName is the array of the names of his brothers

1648


When a c file is executed there are many files that are automatically opened what are they files?

811


What does p mean in physics?

806


How to set file pointer to beginning c?

908


c program for searching a student details among 10 student details

1876


which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +

1484


What are structures and unions? State differencves between them.

852


Did c have any year 2000 problems?

875


my project name is adulteration of chille powder.how can i explain it to the hr when he asks me about the project?

1342


What are local variables c?

751


What are the different types of constants?

835