Question: int MAIN(void) int a, b, c; a = b + 10; printf(a is %d , a); printf(b is %f , b); } If you compile

 int MAIN(void) int a, b, c; a = b + 10;

int MAIN(void)

int a, b, c;

a = b + 10;

printf(a is %d , a);

printf(b is %f , b);

}

If you compile using:

gcc Wall Werror Wextra ansi pedantic - c code.c o code.o

#include int MAIN(void) int a, b, c; printf("a printf("b is %d , a); is %f ", b); If you compile using ce -Wal1 -terror -Mextra -ansi -pedantic - code.c o code.o (a) What are the (5) compiler errors? After all these errors are removed, if you link using: gcc code.o-o code.exe (b) What is the (1) linker error

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!