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
What is header file in c?
Can a pointer be static?
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
Differentiate abs() function from fabs() function.
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.
Write a program to implement queue.
what is the structure pointer?
What is the difference between void main and main in c?
What is the benefit of using an enum rather than a #define constant?
What does it mean when a pointer is used in an if statement?
What is variable initialization and why is it important?
what is the role you expect in software industry?
Why c is called procedure oriented language?
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.