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
Disadvantages of C language.
What is LINKED LIST? How can you access the last element in a linked list?
What's the best way of making my program efficient?
How to get string length of given string in c?
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
When a c file is executed there are many files that are automatically opened what are they files?
What does p mean in physics?
How to set file pointer to beginning c?
c program for searching a student details among 10 student details
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
What are structures and unions? State differencves between them.
Did c have any year 2000 problems?
my project name is adulteration of chille powder.how can i explain it to the hr when he asks me about the project?
What are local variables c?
What are the different types of constants?