InterviewSolution
Saved Bookmarks
| 1. |
Find errors (if any) in the following code; correct it and write the output : #include void draw_line( ); void main( ) { draw_line; printf("...Wel Come to the C Function...\n"); draw_line; } void print_line( ) { printf("===================\n"); } |
|
Answer» wooooowExplanation: |
|