what is the difference between #include<stdio.h> and
#include "stdio.h" ?
Answer Posted / n
implementation defined. read manual for the compiler you use.
if include " " fails, then include < > is tried
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are the types of functions in c?
What is difference between class and structure?
What does %c do in c?
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
What are the different types of linkage exist in c?
What is the difference between #include and #include 'file' ?
When is a void pointer used?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
Dont ansi function prototypes render lint obsolete?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
What does nil mean in c?
Is it possible to pass an entire structure to functions?
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
What is #line used for?
What is the advantage of an array over individual variables?