Project

General

Profile

Statistics
| Revision:

root / lab0 / hello.c @ 146

History | View | Annotate | Download (79 Bytes)

1
#include <stdio.h>
2

    
3
int main(){
4
    printf("Hello world!\n");
5
    return 0;
6
}
7