1

Hi I am on pset1 and I seem to be missing studio.h. Could you tell me how to install studio.h?

Here is my program:

 #include <studio.h> int main(void) { printf("hello world!\n"); } 

Here is the error that I received:

 ~/workspace/pset1/ $ make hello clang -fsanitize=integer -fsanitize=undefined -ggdb3 -O0 -std=c11 -Wall -Werror -Wextra -Wno-sign-compare -Wshadow hello.c -lcrypt -lcs50 -lm -o hello hello.c:1:10: fatal error: 'studio.h' file not found 
1
  • stdio stands for "standard input / output" (or similar), provides functions for accessing files, console in/out/err are like special files Commented Jan 25, 2017 at 16:28

1 Answer 1

5

This is a small syntax error,

<studio.h> 

it should be

<stdio.h> 
1
  • Thank you! Works now. Commented Jan 26, 2017 at 15:15

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.