i'm new to learn C. i'm using Visual studio C++ to learn C. i found that sometimes header files are included in this way:
#include "stdio.h" but sometimes in this way: #include <stdio.h> can anyone clear the differences between this two ways? is it for different purposes? or it's same to use anyone of the above 2 ways?
