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) Functional Programming in C Scope

what is the different to declare a function with int or void?

On the previous functions tutorial we declared the function with int, but now we are declaring it with void. What is the difference? I think those little new keywords we find on every course must be explained by the instructor.

2 Answers

Ron McCranie
Ron McCranie
7,837 Points

That's the return type. You're telling Objective-C what type of value to expect back from the function. Int means to expect an integer, void means to NOT expect anything to be returned.

Although nothing is expected, is it possible to return something from a void function?

Hello moadw,

void function should not return a value, otherwise there will be an error, and the program won't work.