User:Rbayer

From WLCS

Second Quarter Goals:



1. Find a book or other resource to teach myself C (and eventually Objective-C)
Complete
I have found, "C for Dummies" and "Learn C on the Mac" both of which I shall read, but first the dummies book.
2. Complete lessons and create programs that utilize what I have learned.
3. Learn all I can about C.
4. Possibly create a small program in C.


Lessons


Lesson 1.

Today I learned my first program in the computer language known as C. Ironically it wasn't the typical hello world program, but one called 'goodbye.c'. here is the source code.

  1. include <stdio.h>

int main() { printf("Goodbye, cruel world!\n"); return(0); }