Mar 24, 2002 #1 SirShahzad Instructor Joined Jan 23, 2001 Messages 9 Location FR Hi, Please tell me the code. I want to access the memory beyond 1 mb. thanx
Mar 25, 2002 #2 boebox MIS Joined Oct 30, 2000 Messages 70 Location CA Your question is not very clear. Are you asking for some code that allocates more than 1 MB of memory? char *buf = NULL; buf = (char *)malloc(2000000); This is 2MB. -Tony Upvote 0 Downvote
Your question is not very clear. Are you asking for some code that allocates more than 1 MB of memory? char *buf = NULL; buf = (char *)malloc(2000000); This is 2MB. -Tony