Guest User

Untitled

a guest
Mar 5th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.25 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main(int argc, char **argv){
  5.  
  6.    char *tx = "1234567890asdfghjklqwertyui" ;
  7.  
  8.    int n = strlen(tx);
  9.  
  10.    int x;
  11.    for(x=0; x < n; x++){
  12.       printf("%c", tx[x]);
  13.    }
  14.  
  15.    printf("\n");
  16.    return 0;
  17. }
Add Comment
Please, Sign In to add comment