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

Answer Posted / arun.k

#include<stdio.h> does not search the source directory,if
we write #include"stdio.h" it will search the source path
first end include that path

Is This Answer Correct ?    8 Yes 9 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);

835


What is the purpose of & in scanf?

822


What are data structures in c and how to use them?

883


What is a pointer value and address in c?

811


1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.

2529


What is include directive in c?

826


write a programming in c to find the sum of all elements in an array through function.

1909


What is a built-in function in C?

1089


Why doesn't C support function overloading?

2130


The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none

977


Explain how do you sort filenames in a directory?

794


What is non linear data structure in c?

762


what is the c source code for the below output? 10 10 10 10 10 10 10 10 10 10 9 9 7 6 6 6 6 6 6 9 7 5 9 7 3 2 2 5 9 7 3 1 5 9 7 3 5 9 7 4 4 4 4 5 9 7 8 8 8 8 8 8 8 8 9

1617


What is the use of static variable in c?

801


How can I sort a linked list?

796