#include #include #include int main(int argc, char *argv[]) { float a = 3.0f; float b = atof(argv[1]); printf("a * b = %f\n", a * b); return 0; }