I have received my new book on ObjC today and am doing an exercise. Here is the code that I am having errors from:
It says there is a problem with my printf line, but I don't see it. Do any of you?
Code:
#import <stdio.h>
int main(int argc, char *argv[])
{
int sum;
// Compute Result
sum = 25 + 37 - 19
// Display Results
printf ("The answer is %i\n", sum);
return 0;
}
It says there is a problem with my printf line, but I don't see it. Do any of you?