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
Which is better pointer or array?
What does *p++ do?
What is line in c preprocessor?
How can I find the modification date of a file?
What is double pointer?
Explain why c is faster than c++?
What is an expression?
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
Which built-in library function can be used to match a patter from the string?
Why & is used in scanf in c?
What is array of pointers to string?
Where does the name "C" come from, anyway?
How can I recover the file name given an open stream or file descriptor?
How can I delete a file?
Write a program which returns the first non repetitive character in the string?