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
Can a variable be both static and volatile in c?
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only
write a program to copy the string using switch case?
What does the format %10.2 mean when included in a printf statement?
Where define directive used?
Is it possible to use curly brackets ({}) to enclose single line code in c program?
How can I convert a number to a string?
What are the c keywords?
What is realloc in c?
When should I declare a function?
write a program to find out prime number using sieve case?
Why pointers are used in c?
How are pointers declared in c?
What is malloc return c?