Link to home
Start Free TrialLog in
Avatar of shilpi84
shilpi84

asked on

c question

what does a=(0) mean in this code.??

int main(){
    struct xyz{
           int i;
           };
        xyz *p,a=(10);
        *p=a;
        p->i=10;
        printf("%d",a.i);
        getch();
}
ASKER CERTIFIED SOLUTION
Avatar of Infinity08
Infinity08
Flag of Belgium image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial