Following code is not working properly
it give answer
c=5
and
d=75
it give answer
c=5
and
d=75
Code:
char a='5',b='7'; int c,d; c=atoi(&a); cout<<c; d=atoi(&b); cout<<d;
Comment