I have a function which accepts, and is supposed to
initialize,a pointer, but the pointer in the caller remains
unchanged.
Answer / guest
The called function probably altered only the passed copy of
the pointer.
| Is This Answer Correct ? | 2 Yes | 0 No |
Explain the difference between ++u and u++?
what is the output of the program?? #include<stdio.h> main ( ) { int a=010,sum=0,tracker: for(tracker=0;tracker<=a;tracker++) sum+=tracker; printf(ā %d\nā,sum); } what is the difference between a=10 and a=010??
i got 75% in all semester am i eligible for your company
Which is the best website to learn c programming?
main() { static int ivar=5; printf("%d",ivar--); if(ivar) main(); }
what is out put of the following code? #include class Base { Base() { cout<<"constructor base"; } ~Base() { cout<<"destructor base"; } } class Derived:public Base { Derived() { cout<<"constructor derived"; } ~Derived() { cout<<"destructor derived"; } } void main() { Base *var=new Derived(); delete var; }
What is register variable in c language?
Why is void main used?
Explain what is a pragma?
IS it possible to define a zero sized array in c.if it is possible how can the elements of that array can be accessed.array index starts from zero,if it is possible to define zero sized array how can be its first element can be accesseed.
how to find turn around time in operating system?
What is null in c?