Wednesday, October 14, 2009

Listening to a new playlist in my music library by Forever the Sickest Kids. Funny how all the pop-punk boy bands sound so much alike, e.g. Panic! In the Disco, Boys Like Girls, Funeral For A Friend, Scouting for Girls, We the Kings, et cetera. Heck even the lead singers sounded almost the same.

Finals is drawing closer. In fact this is my last week of lectures. Currently cracking my head to complete my computing assignment. Computing is hard, but very fun and feels good when I can get the program to run correctly. It made me doubt whether electrical will be as fun because it seems that I am the only one in my batch who is going to stream into electrical engineering. Imagine one-on-one with the lecturer in a 400-student capacity lecture hall.

Imma paste a piece of code here to irk readers. xD

int main(int argc, char *argv[]) {
printf("arguments = %d\n", argc);
int i;
for (i = 0; i < argc; i++) {
printf("%s\n", argv[i]);
}
return 0;
}


Okay, back to work.

No comments:

Post a Comment