In the DOS enveronment, normal RAM that resides beyond the 1mb mark.
a) expanded memory
b) swapped memory
c) Extended memory
d) none
No Answer is Posted For this Question
Be the First to Post Answer
How pointer is benefit for design a data structure algorithm?
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
How can you increase the size of a statically allocated array?
What are comments and how do you insert it in a C program?
could u able to tell about suresoft technical session
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
what is difference between array and structure?
44 Answers College School Exams Tests, CTS, Google, HCL, IBM, Motorola, TCS,
What are the back slash character constants or escape sequence charactersavailable in c?
Why ca not I do something like this?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
how to find the sizof of any datatype using bit manipulations
write a program to compare 2 numbers without using logical operators?