luishenriique

Simular Digitação

Apr 26th, 2012
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.21 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <Windows.h>
  3.  
  4. int main(){
  5.     int i;
  6.     char texto[16] = "Seja bem vindo!";
  7.  
  8.     for(i = 0; i < 16; i++){
  9.         printf("%c", texto[i]);
  10.         Sleep(100);
  11.     }
  12.     printf("\n\n");
  13.  
  14.     return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment