what is difference between #include<stdio.h> and
#include"stdio.h"
Answers were Sorted based on User's Feedback
Answer / bharatgs7
<stdio.h> means its a in-built header file, "stdio.h" means
its an user-defined header file
Is This Answer Correct ? | 11 Yes | 3 No |
Answer / somichoudhary
In #include<stdio.h>
The c compiler search the header files in Tc-Bin library
But in "stdio.h">
search the header files in local c: folder
Is This Answer Correct ? | 7 Yes | 1 No |
Answer / ep
#include <stdio.h>
Will look for the header file in the standard include paths.
#include "stdio.h"
Will look for the file first in the current directory, then
it wil look for it in the standard include paths, if not found.
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / jeke kumar gochhayat
in #include<stdio.h> , stdio.h is a predefined header file
in the include directory.
but in #include"stdio.h" is a userdefined header files
but functions are same
Is This Answer Correct ? | 0 Yes | 0 No |
An array name contains base address of the array. Can we change the base address of the array?
what is bitwise operator?
how to impliment 2 or more stacks in a single dimensional array ?
Explain what is a pragma?
how can u print a message without using any library function in c
What are the different types of control structures?
#include main() { int i=1,j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; } }
Can we use any name in place of argv and argc as command line arguments?
Explain what’s a signal? Explain what do I use signals for?
What is true about the following C Functions (a) Need not return any value (b) Should always return an integer (c) Should always return a float (d) Should always return more than one value
What is the output of the program given below #include<stdio.h> main() { char i=0; for(;i>=0;i++) ; printf("%d\n",i); }
21 Answers ADITI, Student, TCS,
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }