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
Explain how can I write functions that take a variable number of arguments?
What is the size of structure in c?
What is the difference between class and object in c?
Why we use stdio h in c?
What is the newline escape sequence?
I have a varargs function which accepts a float parameter?
Write a C program on Centralized OLTP, Decentralized OLTP using locking mechanism, Semaphore using locking mechanism, Shared memory, message queues, channel of communication, sockets and a simple program on Saving bank application program using OLTP in IPC?
What is structure padding in c?
How are strings stored in c?
Write a Program to find whether the given number or string is palindrome.
Tell me can the size of an array be declared at runtime?
What is atoi and atof in c?
what are the facialities provided by you after the selection of the student.
What are preprocessor directives in c?
Find MAXIMUM of three distinct integers using a single C statement