Computer Science, asked by ishonchris, 7 hours ago

#include void main() { int h = 8; int b = h++ + h++ + h++; printf("%d\n", h); } count no of tokens

Answers

Answered by metlaalekhya1
0

Answer:

h=8

b=h++____1

b=h++ + h++___2

b=h++ + h++ + h++___3

so no.of.counts are 3

Similar questions