More actions
Bez shrnutí editace Značka: editor wikitextu 2017 |
Bez shrnutí editace Značka: editor wikitextu 2017 |
||
Riadok 1: | Riadok 1: | ||
<quiz display="simple" shuffleanswers=" | <quiz display="simple" shuffleanswers="true"> | ||
{Vyber správne tvrdenia | {Vyber správne tvrdenia | ||
|type="[]"} | |type="[]"} |
Aktuálna revízia z 09:38, 1. november 2024
// Kód č. 1
#include <stdio.h>
int main() {
printf("Ahoj, svet!\n");
return 0;
}
// Kód č. 2
#include <stdio.h>
int main() {
printf("Ahoj, svet!\n")
return 0
}
// Kód č. 3
int main() {
printf("Ahoj, svet!\n");
return 0;
}
// Kód č. 4
#include <stdio.h>
main() {
printf("Ahoj, svet!\n");
return 0;
}