edited by
4,739 views
0 votes
0 votes
the expression 1*2^3*4^5*6 will be evaluated as

 

a)32^30  b)162^30   c)49152  d)173458
edited by

1 Answer

Best answer
2 votes
2 votes

 Since the power has a higher priority than the multiplication

1*2^3*4^5*6  

= 1 * (2^3) * (4^5 ) * 6

=1 * 8 * 1024 * 6

=49152

selected by

Related questions

0 votes
0 votes
0 answers
1
Overflow04 asked Oct 2, 2022
463 views
I want to know which evaluation is wrong here:a-b-c = ab-c- or a-b-c = abc- –a * b *c = ab*c* a*b*c = abc 3 . a+b-c = ab+c- a+b-c = ...
0 votes
0 votes
0 answers
2
CJ147 asked Oct 13, 2018
219 views
How does the array related expression in printf works #include <stdio.h int main(void) { // your code goes here int a[3][4] = { 1,2,3,4,5,6,7,8,9,10,11,12 }; printf("%u",...
0 votes
0 votes
1 answer
3
CJ147 asked Oct 13, 2018
323 views
How does the following expression evaluate to if suppose n=2n=2; a[++n]=n++;
0 votes
0 votes
0 answers
4
CJ147 asked Oct 13, 2018
230 views
How does the following expression evaluate to if suppose n=2a[++n]=n++;