mirror of
https://github.com/szymon-jozef/ZUT-notatki.git
synced 2026-09-07 12:10:40 +02:00
6 lines
100 B
C++
6 lines
100 B
C++
int a = 10; // 10
|
|
double b = a; // 10
|
|
int c = 3.8; // 3
|
|
bool d = c; // true
|
|
char e = 'K'; // K
|