fork download
  1. /******************************************************************************
  2.  
  3. Welcome to GDB Online.
  4. GDB online is an online compiler and debugger tool for C/C++.
  5. Code, Compile, Run and Debug online from anywhere in world.
  6.  
  7. *******************************************************************************/
  8. #include <iostream>
  9. #include <bits/stdc++.h>
  10. using namespace std;
  11. int main() {
  12.  
  13. char a = 'e';
  14. short b = -15;
  15. int c= 1024;
  16.  
  17. printf("El elemento es: %i", b);
  18.  
  19. return 0;
  20. }
  21.  
  22.  
  23.  
Success #stdin #stdout 0.01s 5288KB
stdin
45
stdout
El elemento es: -15