Question: FIND THE FOUR ERRORS IN THE FOLLOWING! /* * Assignment: Lab 2 * * Programmer: * */ #include int main(void) { int operand1, operand2; int
FIND THE FOUR ERRORS IN THE FOLLOWING! /* * Assignment: Lab 2 * * Programmer:* */ #include int main(void) { int operand1, operand2; int product printf("Multiply two numbers "); printf("Enter first number "); scanf("%d", &operand1); printf("Enter second number "); scanf("%d", operand2); product = operand1 + operand2; printf("%d * %d = %d ", operand1, operand2, Product); getchar(); getchar(); return 0; }
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
