LOGIC OF Bodmas?
Answer / 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 |
code for concatination of 2 strings with out using library functions?
Why shouldn’t I start variable names with underscores?
What is infinite loop?
hOW Can I add character in to pointer array of characters char *a="indian"; ie I want to add google after indian in the char *a
how to print a statement in c without use of console statement ,with the help of if statement it should print
how to do in place reversal of a linked list(singly or doubly)?
Explain the Difference between the New and Malloc keyword.
write a program to remove duplicate from an ordered char array? in c
Who is the founder of c language?
given the piece of code int a[50]; int *pa; pa=a; to access the 6th element of the array which of the following is incorrect? a.*(a+5) b.a[5] c.pa[5] d.*(*pa + 5)
when user give a number it multiply with 9 without useing '+' and '*' oprator
Diff between for loop and while loop?