Hello, C!
For a while I’ve been playing with the idea of learning to program in C. I have some programming knowledge but I’m not a programmer. The only time I remember I used C was in the implementation of a three layer neural network on a PIC18f452 microcontroller and I’m pretty sure that was some poorly written code, so today I decided to learn C.
It’s not hard to find information about C. A place to start from may be the tutorial at cprogramming.com but for now I will just check out the article from howstufworks: How C Programming Works and then move to a book with more advanced tutorials and projects (I’ve been told that The C Programming Language could be that book).
And now my first (and maybe the first to many people) C program:
#include <stdio.h>
int main() {
printf("Hello, C!\n");
}
C will make me invincible!
0 comments
