How can we allocate array or structure bigger than 64kb?
Answers were Sorted based on User's Feedback
Answer / banavathvishnu
change the memory model in complier option to higher Model.
Suppose your memory model is small change it to Huge.
| Is This Answer Correct ? | 2 Yes | 1 No |
9.how do you write a function that takes a variable number of arguments? What is the prototype of printf () function? 10.How do you access command-line arguments? 11.what does ‘#include<stdio.h>’ mean? 12.what is the difference between #include<> and #include”…”? 13.what are # pragma staments? 14.what is the most appropriate way to write a multi-statement macro?
What is the scope of global variable in c?
What is the meaning of c in c language?
Do character constants represent numerical values?
Can we access array using pointer in c language?
What is the easiest sorting method to use?
What is function prototype?
What is the diffrent between while and do while statement ?
What is the output of the program given below #include<stdio.h> main() { char i=0; for(;i>=0;i++) ; printf("%d\n",i); }
21 Answers ADITI, Student, TCS,
How can you read a directory in a C program?
extern static int i func() { i =10; i++; printf("%d \n",i); } main() { i =20; printf("%d \n",i); func(); printf("%d \n",i); }
What is structure and union in c?