how to write c language coding
Answers
Answered by
1
Explanation:
To write the first c program, open the C console and write the following code:
#include <stdio. h>
int main(){
printf("Hello C Language");
return 0;
}
Similar questions