fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. printf("%*4.2lf\n",space, 314.04);
  6. printf("%4.2lf\n", 43314.04);
  7.  
  8. return 0;
  9. }
  10.  
Compilation error #stdin compilation error #stdout 0s 10320KB
stdin
Standard input is empty
compilation info
prog.c: In function ‘main’:
prog.c:5:21: error: ‘space’ undeclared (first use in this function)
  printf("%*4.2lf\n",space, 314.04);
                     ^~~~~
prog.c:5:21: note: each undeclared identifier is reported only once for each function it appears in
stdout
Standard output is empty