Guest User

Untitled

a guest
Jan 6th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. #include <stdlib.h>
  2. #include <stdio.h>
  3.  
  4. int main () {
  5.  
  6. char* array [2] = {"12345678912345678","12345678"};
  7. int a = sizeof (array [0]);
  8.  
  9. fprintf (stdout, "%s , %d n", array [0], a);
  10.  
  11. return 0;
  12. }
  13.  
  14. 12345678912345678 , 12345678
  15.  
  16. int a = strlen(array [0]);
Add Comment
Please, Sign In to add comment