Answer Posted / vatsava
int main()
{
int *ptr;
ptr = (int *)2000;
*ptr = 10;
printf("%d", *ptr);
}
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are keywords in c with examples?
Explain how can I open a file so that other programs can update it at the same time?
What tq means in chat?
What is a pointer variable in c language?
What does c mean?
What is structure packing in c?
How to create struct variables?
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
Tell me can the size of an array be declared at runtime?
Why is c used in embedded systems?
Describe how arrays can be passed to a user defined function
Explain what is a pragma?
Can a variable be both const and volatile?
How do you determine a file’s attributes?
Is fortran faster than c?