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 |
write a program to check whether a given integer is a strong number or not? [Hint: 145=1!+4!+5! =1+24+120 =145]
In CMM or CMMI certified organizations,we assess only the standard software processes of the organization. We do not assess the organizations other functional departments like HR or Admin. Then how can we certify the entire organization as CMM level company?? We have assessed only software related activities. Right. There is no relation with other departments like Accounts, HR or Admin. Then how can we claim that the whole company is a CMM certified company?
Predict the output or error(s) for the following: 25. main() { printf("%p",main); }
a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode
#include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain ؟؟؟
Give me the code of in-order recursive and non-recursive.
Add Two Numbers Without Using the Addition Operator
Discuss the function of conditional operator, size of operator and comma operator with examples.
What is the difference between text files and binary files?
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
The statement, int(*x[]) () what does in indicate?
List the difference between a "copy constructor" and a "assignment operator"?