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
What is volatile, register definition in C
What are file streams?
What is spaghetti programming?
Was 2000 a leap year?
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
Explain how can I pad a string to a known length?
What is array of structure in c programming?
What is difference between structure and union with example?
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
How can you determine the maximum value that a numeric variable can hold?
What does main () mean in c?
What is the difference between a function and a method in c?
What are the types of type specifiers?
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
Explain what is a stream?