what is the difference between <stdio.h> and "stdio.h"
Answer Posted / shuvransu_banerjee
<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 ? | 313 Yes | 16 No |
Post New Answer View All Answers
Explain what is the general form of a c program?
Explain what is dynamic data structure?
How many levels of pointers can you have?
What is the explanation for prototype function in c?
What is the usage of the pointer in c?
What is variable in c example?
What is variable and explain rules to declare variable in c?
What is the use of a semicolon (;) at the end of every program statement?
What are local static variables? How can you use them?
What is the full form of getch?
What is the difference between NULL and NUL?
Write a program to check whether a number is prime or not using c?
how is the examination pattern?
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
How will you find a duplicate number in a array without negating the nos ?