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 is multidimensional arrays
What is a substring in c?
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
What are shell structures used for?
my project name is adulteration of chille powder.how can i explain it to the hr when he asks me about the project?
Explain bit masking in c?
How can I open a file so that other programs can update it at the same time?
What are different types of pointers?
What is substring in c?
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
Explain what is the difference between far and near ?
What is the correct code to have following output in c using nested for loop?
Write a c program to demonstrate character and string constants?
Explain how can I remove the trailing spaces from a string?
How we can insert comments in a c program?