what is the difference between #include<stdio.h> and
#include"stdio.h" ?

Answer Posted / mytri

#include<stdio.h>--Search from current directory
#include"stdio.h"--Search from list of directories that are
included in path

Is This Answer Correct ?    61 Yes 28 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is a struct c#?

601


Why main is used in c?

590


a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above

656


1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.

1664


int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer

658






Can you please explain the difference between exit() and _exit() function?

595


Write a program to check armstrong number in c?

636


What are the different types of linkage exist in c?

614


What is function prototype?

611


Why do we use static in c?

634


What is getche() function?

610


What is the difference between mpi and openmp?

737


formula to convert 2500mmh2o into m3/hr

499


What is cohesion in c?

543


What is the use of function in c?

715