Write a C Language program called iam.c to:
Have a string variable called myName initialized to your-name-here. Print on one line a literal string "Hello " concatenated to myName.
In Linux Terminal compile your iam.c source code program to produce a .exe executable.
Run your iam.exe and take a print screen image.
Upload your iam.exe file here.
Here is the C program, update your name instead of Julius Ceaser inside the double quotes.
===================================================================
#include<stdio.h>
int main(){
char myName[50] ="Julius Ceaser";
char hello[] ="Hello";
printf("%s %s", hello, myName);
return 0;
}
Get Answers For Free
Most questions answered within 1 hours.