programming in C

·

1 min read

Let's write a simple code with C

#include <stdio.h>

int main() {

printf("Hello world");

return 0;

}