/*  Comentrio: Este  um Exemplo de Programa em C */

#include <stdio.h>
#include <stdlib.h>

char Nome[30];         

int main(int argc, char *argv[])
{
  
  printf("Qual o seu nome? "); 
  scanf ("%s",Nome);

  printf("Hello %s\n",Nome);

  system("PAUSE");	
  return 0;
}