11 lines
169 B
C
11 lines
169 B
C
|
// Kostra prveho cvicenia USAA 2019
|
||
|
#include <stdio.h>
|
||
|
#include <string.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
#define LINE_SIZE 100
|
||
|
|
||
|
int main(){
|
||
|
printf("Ahoj svet\n");
|
||
|
return 0;
|
||
|
}
|