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