Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2017
74
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 <malloc.h>
  3. #include <conio.h>
  4. #include <string.h>
  5.  
  6. int main()
  7. {
  8.  char *Word = (char*)malloc(sizeof(char));
  9.  printf("%d\n", strlen(Word));
  10.  _getch();
  11.  return 0;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement