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
Why should I use standard library functions instead of writing my own?
What will be the outcome of the following conditional statement if the value of variable s is 10?
Write a program to reverse a linked list in c.
What is data structure in c programming?
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
Why do we use stdio h and conio h?
Are the variables argc and argv are local to main?
What is void c?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
What is main function in c?
What library is sizeof in c?
Explain the use of fflush() function?
What is volatile variable in c?
Write the control statements in C language
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply