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