0
I need help in this code
3 Answers
0
Yasir Yagoub Ahmed
What you want to do here?
0
the statement:
1+b;
has no effect. If you would like to increment variable b, you can use:
b++;
OR
b += 1;
0
you must assign expression result to something (could be passed as function argument):
b = 1+b;
or:
printf("%d",1+b);