Advertisement
Guest User

Untitled

a guest
Jan 25th, 2013
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.32 KB | None | 0 0
  1. #include "cstdlib"
  2. #include "iostream"
  3.  
  4. using namespace std;
  5. int main()
  6. {
  7.     OPET:
  8.     char
  9.         unos = '\0';
  10.     cout << "Unesi znak koji zelis prevesti u ascii tablicu" << endl;
  11.     cin >> unos;
  12.     printf("Ascii vrijednost od %c je %d\n", unos, unos);
  13.     goto OPET;
  14.     system("PAUSE");
  15.     return (false);
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement