I need to print an array[256x65536], I made a simple program but alway get error 2 if a=256 and b=65536.
Please help.
.
Code:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <math.h>

typedef unsigned int WORD;
typedef WORD* WORDPTR;

WORDPTR *S;
WORDPTR  D;

WORD x_num;
WORD
...