Advertisement
Guest User

Untitled

a guest
Sep 18th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.24 KB | None | 0 0
  1. #include <cstdio>
  2. #include <iostream>
  3. using namespace std;
  4.  
  5. int main () {
  6.     /* this output the username
  7.     */
  8.     printf ("s19194\n");
  9.     int a; // a has no value
  10.     a = 123; // the value of a is 123
  11.    
  12.     cout << a << endl;
  13.    return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement