what is the difference between #include<stdio.h> and
#include"stdio.h" ?
Answer Posted / sanjay chandra
#include<stdio.h> /* stdio.h is searched in c:\TCP\INCLUDE
folder. If not found gives compilation error
#include "stdio.h" first searches for stdio.h in
c:\TCP\BIN(current diretory) . If not found searches
c:\tcp\include\ for stdio.h file
| Is This Answer Correct ? | 21 Yes | 7 No |
Post New Answer View All Answers
Which programming language is best for getting job 2020?
How can a string be converted to a number?
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
What is difference between array and pointer in c?
code for quick sort?
Is it fine to write void main () or main () in c?
shorting algorithmS
How do you print an address?
define string ?
Is there any data type in c with variable size?
what do the 'c' and 'v' in argc and argv stand for?
illustrate the use of address operator and dereferencing operator with the help of a program guys plzzz help for this question
Can a void pointer point to a function?
What is extern c used for?
Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.