Assignment 1. What is the roll of each of the following lines of code? #include // Include the functions in Library stdio.h when considering this source for compilation. int main(void) // Main returns and Int, and takes no arguments return (0); // Return the exit status of 0 2. Correct the following ERRORS FIXED #include (studio): #include int main void; int main(void) { { printf(This is text that is output/n) printf("This is text that is output\n"); } } 3. What do the following accomplish? gcc aabb.c # Creates compiled program as file a.out cc ddff.c -o ddff # Creates compiled program as file ddff