Devlog - 2025εΉ΄07ζ17ζ₯
π What I Did
- Started with CS50(Computer Science course by Harvard).
- Helped me on the revision for C-language.
- This time tried to run the code on the terminal itself.
#include <stdio.h>
int main(void){
printf("Hello, world.\n");
return 0;
}
π§ What I Learned
- It was simple but I wanted to understand the teminal workflow.
- For compiling and running together,
gcc hello.c -o hello && ./hello.
π₯ Whatβs Next
- Iβll work on full-stack.