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
Is c programming hard?
What is break in c?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
FILE PROGRAMMING
How do you convert strings to numbers in C?
Write a program to use switch statement.
How do you use a 'Local Block'?
Explain what is wrong with this statement? Myname = ?robin?;
Explain what is wrong with this program statement?
What is the difference between #include
Explain the use of fflush() function?
What is indirection?
What are qualifiers?
What are the advantages of union?
What does do in c?