Wednesday 9 March 2016

WELCOME ALIENS


You reside in a desert place, One day a space shuttle lands infront of your eyes. Two Aliens comes out of the space shuttle. They were so friendly and you just want to Welcome them to our planet. Write a C program to welcome those two aliens to our planet EARTH.

Sample Output:

Hello Aliens ! Welcome to our planet Earth.

Code:

  #include<stdio.h>
int main(){
  printf("Hello Aliens ! Welcome to our planet Earth.");
  
  return 0;
}

No comments:

Post a Comment