1,103 views

1 Answer

3 votes
3 votes

<stdio.h> searches in standard C library locations, whereas "stdio.h" searches in the current directory as well.

Ideally, you would use <...> for standard C libraries and "..." for libraries that you write and are present in the current directory.

Related questions

0 votes
0 votes
1 answer
1
0 votes
0 votes
0 answers
2
0 votes
0 votes
0 answers
3
pooja14 asked Jun 22, 2016
219 views
1 votes
1 votes
1 answer
4
_shashi asked Jan 27, 2018
674 views
what is the difference between *b[10] and (*b)[10] ?