1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#include <stdio.h> void run() { float a = 1.0; float b = 2.0; float c = a + b; printf("%f\n", c); } int main() { run(); }