mirror of
https://github.com/ttroy50/cmake-examples.git
synced 2025-12-18 20:24:35 +03:00
10 lines
167 B
C++
10 lines
167 B
C++
#include <iostream>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
std::cout << "Hello Main2!" << std::endl;
|
|
int* x = NULL;
|
|
std::cout << *x << std::endl;
|
|
return 0;
|
|
}
|