How to make a LONGLONG array ?
-
Hiii,,, The following code doesn't take . How to make it correct? UINT64 ui_offset; LONGLONG ll_array[ ui_offset]; Showing constraint error....!!! Thank u:cool::cool:
-
Hiii,,, The following code doesn't take . How to make it correct? UINT64 ui_offset; LONGLONG ll_array[ ui_offset]; Showing constraint error....!!! Thank u:cool::cool:
ui_offset has to be a constant. Try this -
const UINT64 ui_offset = ;
LONGLONG ll_array[ui_offset];«_Superman_» I love work. It gives me something to do between weekends.
-
ui_offset has to be a constant. Try this -
const UINT64 ui_offset = ;
LONGLONG ll_array[ui_offset];«_Superman_» I love work. It gives me something to do between weekends.
Hiiii.... I tried with const UINT64 ui_offset = 1000000; LONGLONG ll_array[ui_offset]; It works properly... Thanking you......