4381bb2a22
When the execution reaches the end of the main functions, they implicitly return a successful status.
8 lines
112 B
C
8 lines
112 B
C
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
int main(void) {
|
|
double d = atof("-3.14");
|
|
printf("%f\n", d);
|
|
}
|