Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <Windows.h>
- int main(){
- int i;
- char texto[16] = "Seja bem vindo!";
- for(i = 0; i < 16; i++){
- printf("%c", texto[i]);
- Sleep(100);
- }
- printf("\n\n");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment