Newspaper agency program in c++
Answers
Answered by
0
Explanation:
1. Program to Print Hello world!
#include <stdio.h>
int main()
printf("Hello World!\n");
return 0;
2. Output: Hello Aliens ! Welcome to our planet Earth
#include <stdio.h>
int main()
printf("Hello Aliens ! Welcome to our planet Earth. \n");
return 0;
3. Think that you are a scientist and you have invented a Humanoid Robot. You want to
Introduce your Robo in a public meeting. You need to feed the information that the
Robo has to speak in the public meeting.So feed the basic information into the Robo
using C program,
Sample Input and output:
Enter the Name:
Chitti
Enter the Creator Name:
Dr.Vasegran
Enter the Purpose:
military service
Memory Space:
22
Similar questions