mirror of
https://github.com/szymon-jozef/ZUT-notatki.git
synced 2026-09-07 20:20:39 +02:00
11 lines
185 B
C++
11 lines
185 B
C++
#include <iostream>
|
|
|
|
int main() {
|
|
int a;
|
|
int b = 5;
|
|
int c(6);
|
|
int d{7};
|
|
int e{};
|
|
std::cout << a << " " << b << " " << c << " " << d << " " << e << std::endl; // 0 5 6 7 0
|
|
}
|