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

Answer Posted / cpmt

<stdio.h> searches in the current directory."stdio.h"
searches in the both source and current directory.

Is This Answer Correct ?    6 Yes 10 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Tell me with an example the self-referential structure?

567


How to write a code for implementing my own printf() and scanf().... Please hep me in this... I need a guidance... Can you give an coding for c... Please also explain about the header files used other than #include...

4906


In c programming, explain how do you insert quote characters (? And ?) Into the output screen?

766


what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555

2538


find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }

1860






What is difference between arrays and pointers?

584


the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?

567


How important is structure in life?

594


Is c is a procedural language?

601


What is graph in c?

586


What is void main () in c?

735


What are categories used for in c?

569


while initialization of array why we use a[][2] why not a[2][]...?

1869


What are types of preprocessor in c?

621


When a c file is executed there are many files that are automatically opened what are they files?

595