Why does "stdio.h" instead of <stdio.h> work?
Code:
#include "stdio.h"//why C is not giving error here? void main() { printf("hello"); getch(); }
Comment