Tell us the difference between these two :
#include"stdio.h"
#include<stdio.h>
define in detial.
Answer Posted / 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 |
Post New Answer View All Answers
Why should I prototype a function?
What are the different file extensions involved when programming in C?
What is array in c with example?
Is c object oriented?
Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given
write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)
What is the difference between fread and fwrite function?
What are keywords in c with examples?
What are global variables and how do you declare them?
What is the meaning of && in c?
What do mean by network ?
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm
What are the two types of functions in c?
program to find out date after adding 31 days to a date in the month of febraury also consider the leap year
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?