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

Answer Posted / shipra

#include<stdio.h> this command look for the file stdio.h
in the specified list of directories only

and

#include"stdio.h" would look the file stdio.h in the current
directory as well as the specified list of directories as
mentioned in the include search path

Is This Answer Correct ?    13 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?

572


How can I dynamically allocate arrays?

589


Explain can static variables be declared in a header file?

677


Write a program which returns the first non repetitive character in the string?

598


What's a good way to check for "close enough" floating-point equality?

622






Explain a pre-processor and its advantages.

627


How to set file pointer to beginning c?

663


What are the main characteristics of c language describe the structure of ac program?

606


Can you think of a logic behind the game minesweeper.

2007


Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.

679


Why c is a mother language?

552


Why do we use namespace feature?

577


Explain how can I convert a string to a number?

643


What is the difference between malloc() and calloc() function in c language?

599


Explain what is the difference between a string and an array?

632