Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 228 Bytes

README.md

File metadata and controls

13 lines (11 loc) · 228 Bytes

hello-world

Using c code to print "Hello world!"

Compile and generate binary file

Run the binary file

Add new comments

Test binary file

#include <stdio.h> int main(){ printf("Hello World!"); return 0; }