fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes her#include <stdio.h> int main ()
  5. {
  6. /* variable definition: */
  7. int a, b, c; float f, g1, g2, h1, h2;
  8. /* variable initialization */
  9. a = 10; b = 20;
  10. f = 75.0; g1 = 3.0;
  11. g2 = 0.0;
  12.  
  13. // Calculate sum of a and b c = a + b;
  14. //Note: a,b,c are Declared as Integer, hence we use %d as the formatter. //Wherever you put the formatter symbol (i.e %d) is where the variable value is substituted. //The order of the substitution is the same as the order of the variable list at the end (a,b,c) //Note the tab (\t) in the statement also. printf(" The sum of Integers (%d) and (%d) is : \t %d \n", a, b, c); // value of a is substituted here ^ value of b ^ value c ^ here
  15.  
  16. // Calculate quotients
  17. h1 = f/g1;
  18. h2 = f/g2;
  19.  
  20. //Note: f,g,h are Declared as Float, hence we use %f as the formatter. printf(" The number (%f) divided by (%f) yields the quotient (%f) \n", f, g1, h1);
  21.  
  22. printf(" The number (%f) divided by (%f) yields the quotient (%f) \n", f, g2, h2);
  23.  
  24. return 0;
  25. 4
  26.  
  27. }e
  28. return 0;
  29. }
  30.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp: In function ‘int main()’:
prog.cpp:27:1: error: expected ‘;’ before ‘}’ token
 }e
 ^
prog.cpp:27:2: error: ‘e’ was not declared in this scope
 }e
  ^
stdout
Standard output is empty