Began to study C. Elementary program:
#include <stdio.h> #include <math.h> int main(void) { float a; float b; scanf("%f", a); scanf("%f", b); printf("Result: %f", pow(a, b)); } Exit status -1 . Why doesn't it work as planned? Why is there no error in the output? What to fix?