Dec 01, 2006 00:10
- Console Application
- Empty application
- Solution Explorer -> Source Files -> Add -> New Item
-
int main(int argc, char *argv[])
{
return 0;
} - Compile
- определены в stdlib.h
- system (нужно для того, чтобы написать подождите)
- EXIT_SUCCESS 0
-
#include
int main(int argc, char *argv[])
{
system("PAUSE");
return EXIT_SUCCESS;
} - Для вывода строк std::cout, printf нужно #include для printf нужно самому добавлять перевод строки
console,
windows,
cpp