ใช้กรณีต้องการให้โปรแกรมมีจุดสิ้นสุดการทำงานหรือออกจากโปรแกรม
#include <iostream>
using namespace std;
int main(int argc, char** argv)
{
exit(1);
cout << "C++ Programming" << endl;
system("pause");
return 0;
}
โปรแกรมจะไม่แสดงข้อความ เนื่องจากจบโปรแกรมไปก่อน
Sign up here with your email
ConversionConversion EmoticonEmoticon