Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS Objective-C Basics (Retired) Fundamentals of C Anatomy of a C program

<stdio.h>

I didn't fully understand "stdio.h" file. Is it something we should write? Or xcode writes it for us? If it is a system file why we have to indicate it?

1 Answer

It is the standard C library for input/output operations. If you import this to your app you can use the provided C methods to access files, to access the console etc. You do not have to write it, it is provided to you by the system or included.

Okay, i understand know. Thanks for your answer.