-
-
-
-
-
What is the output of the following program?
#include #define FIRST_PART 7#define LAST_PART 5#define ALL_PARTS FIRST_PART + LAST_PARTint main() {printf ("The Square root of all parts is %dn , ALL_PARTS * ALL_PARTS) ;return(0);} A. 35B. 144C. 49D. 47