fork download
  1. // Lab 8, Working with structs
  2. // Programmer : Maiar Khattab
  3. // Editor(s) used : Code Blocks 13.12
  4. // Compiler(s) used : Code Blocks 13.12
  5.  
  6. #include<iostream>
  7. using namespace std;
  8.  
  9. int main() {
  10. // Fun message output
  11. cout << "sorry moni baba gussa nhi ho " << endl;
  12.  
  13. // More fun output
  14. cout << "Here's a joke for you: o meri payri madhu o meri danger madhu tere liye laya hu mein kuch khasam khas!" << endl;
  15.  
  16. return 0;
  17. }
  18.  
Success #stdin #stdout 0.01s 5280KB
stdin
 
stdout
sorry moni baba gussa nhi ho 
Here's a joke for you: o meri payri madhu o meri danger madhu tere liye laya hu mein kuch khasam khas!