Advertisement
Josif_tepe

Untitled

Feb 2nd, 2025
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.20 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int funkcija() {
  5.     return 5;
  6. }
  7. int main() {
  8.     int x = funkcija();
  9.    
  10.     cout << x << endl;
  11.     cout << funkcija() << endl;
  12.     return 0;
  13. }
  14.  
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement