website
closed

closed by
255 views
0 votes
0 votes
closed with the note: bad question
  1.  #include <stdio.h>
  2.     int main()
  3.     {
  4.         int a = 1, b = 1, d = 1;
  5.         printf("%d, %d, %d", ++a + ++a+a++, a++ + ++b, ++d + d++ + a++);
  6.     }
closed by

1 Answer

Related questions

0 votes
0 votes
1 answer
1
Jeetmoni saikia asked Apr 12, 2023
763 views
int main(){int a = 10;cout<<a++;return 0;} (A) 10(B) 11(C) 12(D) Not defined
0 votes
0 votes
1 answer
4
Cristine asked Mar 31, 2019
317 views
There is 4 coins 1 paisa, 5 paise, 10 paise, 25 paise using these coins we have to make 50 paisa how many combination can we make ?