mirror of
https://github.com/ttroy50/cmake-examples.git
synced 2025-12-18 12:14:36 +03:00
9 lines
150 B
C++
9 lines
150 B
C++
#include <iostream>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
std::cout << "Hello Main2!" << std::endl;
|
|
char tmp[10];
|
|
tmp[11] = 's';
|
|
return 0;
|
|
} |