mirror of
https://github.com/szymon-jozef/ZUT-notatki.git
synced 2026-09-07 12:10:40 +02:00
7 lines
135 B
C++
7 lines
135 B
C++
int main() {
|
|
int a{5};
|
|
double b{5};
|
|
// int c{3.14}; nie skompiluje się przez niepoprawny typ danych rzutowany
|
|
int d = 3.14;
|
|
}
|