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

Answer Posted / shuvransu_banerjee

<stdio.h> is a header file which available in include
directory of the system. When we write #include<stdio.h>
preprocessor search for it in include directory directly
and not out of this directory. But when we write "stdio.h"
precessor start searching for this header file from current
directory and then in parent directories. So if we write
our own stdio.h in the current directory and include in
program as #include"stdio.h" then our header will be
included instead of system header.

Is This Answer Correct ?    313 Yes 16 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is header file in c?

833


Can a pointer be static?

827


process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,

2160


Differentiate abs() function from fabs() function.

787


What is Dynamic memory allocation in C? Name the dynamic allocation functions.

943


Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.

908


Write a program to implement queue.

875


what is the structure pointer?

1863


What is the difference between void main and main in c?

872


What is the benefit of using an enum rather than a #define constant?

939


What does it mean when a pointer is used in an if statement?

860


What is variable initialization and why is it important?

842


what is the role you expect in software industry?

1879


Why c is called procedure oriented language?

802


FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.

1529