I have a problem when I write the code, the terminal respond :
$ clang hello.c
hello.c:1:10: fatal error: ‘studio.h’ file not found
#include <studio.h>
^~~~~~~~~~
1 error generated.
$
How can I fix this?
Thank you.
It’s spelled <stdio.h>
(As in “standard I/O”)
2 Likes
Thank you!, it worked.