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 do you sort filenames in a directory?
‘SAVEPOINT’ and ‘ROLLBACK’ is used in oracle database to secure the data comment. Give suitable examples of each with sql command.
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
swap 2 numbers without using third variable?
Explain modulus operator.
Write program to remove duplicate in an array?
What is pointer & why it is used?
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
What is a floating point in c?
What is declaration and definition in c?
What is clrscr in c?
What is the return type of sizeof?
What is variable declaration and definition in c?
In a switch statement, what will happen if a break statement is omitted?
Explain what is a static function?