Quick actions

cmd+k|ctrl+k

Navigation

Languages

lab6 task1

Snippet info

Language

C

Visibility

public

Author

t.m.kozynets

Created

2025-05-20T00:36:31.894704Z

Updated

2025-05-20T00:36:47.07757Z

#include <stdio.h>
#include <locale.h>

int main() {
    setlocale(LC_ALL, "866");
    
    printf("\x8A\xAE\xA7\xA8\xA3\xA5\xE6\xB8 "); // Козинець
    printf("\x93\xA8\xA2\xA6\xA0\n");           // Тимур

    return 0;
}
INFO