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 is the difference between fread and fwrite function?
Is the exit() function same as the return statement? Explain.
What are pointers? What are different types of pointers?
What library is sizeof in c?
How can I call fortran?
What is the use of function in c?
What is a struct c#?
What is the scope of an external variable in c?
application areas a 'c' a) operating system b) graphics, interpreter, assembler c) program evalution, communication softwares d) all the above
Tell us something about keyword 'auto'.
Simplify the program segment if X = B then C ← true else C ← false
What is double pointer in c?
Why cant I open a file by its explicit path?
Can we change the value of constant variable in c?
Why do we need volatile in c?