This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "root": true, | |
| "overrides": [ | |
| { | |
| "files": [ | |
| "*.ts" | |
| ], | |
| "parser": "@typescript-eslint/parser", | |
| "parserOptions": { | |
| "project": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| async function new_visitor() { | |
| return Promise.resolve() | |
| } | |
| function greet_visitor() { | |
| console.log('Welcome and receive greetings!'); | |
| } | |
| async function welcome() { | |
| await new_visitor(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| int cv2_treti() | |
| { | |
| char znak; | |
| printf("Znak Cvicenia! \n"); | |
| fflush(stdin); | |
| printf("Zadajte znak: "); | |
| znak = getchar(); | |
| if( znak >= 'a' && znak <= 'z') | |
| printf("\nznak %c na vstupe je male pismeno ma ASCII hodnotu %d alebo aj %02x Hexa\nmale pismeno bolo zmenene na velke %c\nktore ma ASCII hodnotu %d, alebo aj %02x Hexa", | |
| znak,znak,znak,toupper(znak),toupper(znak),toupper(znak)); |