Contact: aviboots(AT)netvision.net.il
38,169 questions
49,785 answers
573 users
#include <iostream> int main() { std::cout << "abc"; exit(0); // Terminates the program std::cout << "xyz"; } /* run: abc */