Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- int main()
- {
- int byte;
- printf("How many memory do u want? ");
- scanf("%d", &byte);
- char *array = (char*)malloc(byte);
- if (array == NULL){
- printf("fuc u");
- } else
- printf("its ok bro");
- }
Advertisement
Add Comment
Please, Sign In to add comment