Answer Posted / jaswanthi
it is the logic of precedence of operators.precedence means
while we are excuting an arthametic statement which has 2 or
more operators we may have some problems about ho exactly it
get excuted for that this is used here in bodmas-B MEANS
brackets&d-division,m-multiplication,a-addition,s-subtraction in
this order we have to perform operations
| Is This Answer Correct ? | 13 Yes | 1 No |
Post New Answer View All Answers
What is f'n in math?
Write the Program to reverse a string using pointers.
What is return in c programming?
Tell me what is null pointer in c?
What will be the outcome of the following conditional statement if the value of variable s is 10?
Differentiate between the = symbol and == symbol?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
What is the value of uninitialized variable in c?
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
What is multidimensional arrays
Is it cc or c in a letter?
What is 2 d array in c?
explain what are actual arguments?
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?