What is the output of the C statement? int maino { int a=0, a=4+4/2*5+20; printf("%d",a) return 0; } C स्टेटमेंट का आउटपुट क्या है? int main() { int a=0; a=4+4/2*5+20; printf("%d", a); return 0; } Options 40 04
Answers
Answered by
0
Answer:
34
Explanation:
this program run in operator precedence manner.
*,/ high priority
+,- low priority
Similar questions