HELLO WORLD C PROBLEM 1 SOLUTION
- Write a C program that prints your name
#include <stdio.h>
int main()
{
printf("Name: Your Name\n");
return 0;
}
Comments
Post a Comment