Saved Bookmarks
| 1. |
What will be the output of the followingC code?#include int main()int a = 1,b=1,c;c=a+++ b;printf("%d, %d", a,b); |
|
Answer» a=2 b=1 |
|