fork download
  1. #include<stdio.h>
  2. int main()
  3. {
  4. int age=22;
  5. char section='A';
  6. float Salary=1000.6;
  7. double bonousSalary=200.789;
  8. printf("Age=%d\n",age);
  9. printf("Section=%c\n",section);
  10. printf("Salary=%f\n",Salary);
  11. printf("bonousSalary=%lf\n",bonousSalary);
  12. return 0;
  13. }
Success #stdin #stdout 0s 5292KB
stdin
Standard input is empty
stdout
Age=22
Section=A
Salary=1000.599976
bonousSalary=200.789000