Q. What will be the output of the following code snippet?
Code:#include <stdio.h>
void solve() {
printf("%d %d %d", (076), (28), (0x87));
}
int main() {
solve();
return 0;
}
β
Correct Answer: (C)
62 28 135