Category Archives: Programming

Hello world!

c 1 2 3 4 5 6 7 #include <stdio.h>   int main() { printf("Hello world!\n");   return 0; }#include <stdio.h> int main() { printf("Hello world!\n"); return 0; } c++ 1 2 3 4 5 6 7 #include <iostream>   … Continue reading

Posted in Programming | 6 Comments