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
What is the difference between realloc() and free()
Do you know the use of 'auto' keyword?
WRITE A C PROGRAM FOR PRINT "RHOMBUS" STRUCTURE . Example: Enter the numbers :3 * * * * * * * *
What are bit fields? What is their use?
What is the difference between declaring a variable and defining a variable?
Print the foll in C...eg when n=5 the o/p must b + + + + + + + + + + + + + + + + +
2. Write a function called hms_to_secs() that takes three int values—for hours, minutes, and seconds—as arguments, and returns the equivalent time in seconds.. Create a program that exercises this function by repeatedly obtaining a time value in hours, minutes, and seconds from the user (format 12:59:59), calling the function, and displaying the value of seconds it returns.
How can I find the modification date of a file?
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
#include<stdio.h> int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20
What is void main () in c?