3.Correct the errors in the following code and rewrite [2]
#include(stdio.h);
#include(conio.h);
voidmain()
{ scanf(“Hello world);
}
Answers
Answered by
0
Answer:
The corrected form is given to you
#include<stdio.h>
#include<conio.h>
void main()
{ printf(“Hello world);
}
Answered by
0
Answer:
please mark as brilliant
Attachments:
Similar questions