what is the difference between <stdio.h> and "stdio.h"
Answer Posted / shipra
#include<stdio.h> this command look for the file stdio.h
in the specified list of directories only
and
#include"stdio.h" would look the file stdio.h in the current
directory as well as the specified list of directories as
mentioned in the include search path
| Is This Answer Correct ? | 13 Yes | 5 No |
Post New Answer View All Answers
What is #include called?
Define the scope of static variables.
hi any body pls give me company name interview conduct "c" language only
What is scanf () in c?
Write a program to swap two numbers without using the third variable?
what is reason of your company position's in india no. 1.
What is the difference between strcpy() and memcpy() function in c programming?
What is assert and when would I use it?
What is the purpose of the statement: strcat (S2, S1)?
Tell me when is a void pointer used?
How many parameters should a function have?
what are the facialities provided by you after the selection of the student.
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
What do you mean by a sequential access file?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers