fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. // your code goes here
  6. int a=1;
  7. float b=2.5;
  8. char c='A';
  9. printf("a=%d\n",a);
  10. printf("b=%f\n",b);
  11. printf("c=%c\n",c);
  12. printf("End of program\n");
  13. return 0;
  14. }
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
a=1
b=2.500000
c=A
End of program