Tell us the difference between these two :
#include"stdio.h"
#include<stdio.h>
define in detial.
Answers were Sorted based on User's Feedback
Answer / arif
"stdio.h" linker search the header file in the current directory
<stdio.h> linker search the header file in all the directories
| Is This Answer Correct ? | 15 Yes | 2 No |
Answer / sourisengupta
"stdio.h" linker search the header file first in the
current directory, if it does not find there then it will
search the directory which is declared by the compiler as a
header file directory and all the header file stores there.
<stdio.h> linker search the header file in all the
particular which is declared by the compiler as a header
file directory.
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / arif
"stdio.h" C compiler-preprocessor search the header file in the current directory
<stdio.h> C preprocessor search the header file in all the directories
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / g.deepa
#include"stdio.h" is the creating by the user
(within Double quotes header files are created by the user)
#include<stdio.h> is the header file of programming
language.It is the created by the Programmers.
| Is This Answer Correct ? | 9 Yes | 10 No |
Answer / bipin chandra sai.s
hay there no difference between both of them both are same
| Is This Answer Correct ? | 0 Yes | 5 No |
Explain Linker and Loader
int main() { int *p=new int; *p=10; del p; cout<<*p; *p= 60; cout<<*p; } what will be the output & why?
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.
increment operateor (++)and decrament(--) #include<stdio.h> #inclide<conio.h> main() { int x=15; while(x!=0) scanf("%d",&x); {
Using which language Test cases are added in .ptu file of RTRT unit testing???
Write a C program that reads a series of strings and prints only those ending in "ed"
In the following control structure which is faster? 1.Switch 2.If-else and which consumes more memory?
How many levels deep can include files be nested?
How to explain the final year project as a fresher please answer with sample project
Write a small C program to determine whether a machine's type is little-endian or big-endian.
Is that possible to add pointers to each other?
find second largest element in array w/o using sorting techniques? use onle one for loop.
15 Answers BitWise, Zycus Infotech,