Answer Posted / vishnu
int main()
{
int *ptr;
ptr = (int *)0x2000;
*ptr = 10;
printf("%d", *ptr);
}
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
What does %2f mean in c?
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?
What does s c mean in text?
What is c system32 taskhostw exe?
Why is c called a structured programming language?
disply the following menu 1.Disply 2.Copy 3.Append; as per the menu do the file operations 4.Exit
Is c still relevant?
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
Define circular linked list.
How to write a program for machine which is connected with server for that server automatically wants to catch the time for user of that machine?
a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if
What does the error 'Null Pointer Assignment' mean and what causes this error?
What does stand for?
Was 2000 a leap year?
Is it possible to execute code even after the program exits the main() function?