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 |
what is the basis for selection of arrays or pointers as data structure in a program
can we print any string without using terminator?
What is the benefit of using const for declaring constants?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
Write a program to write a given string in maximum possibilities? i.e str[5]="reddy"; i.e we can write this string in 120 ways for that write a program
Why c++ is called c++ and not c+?
for(i=1;i>0;i++); printf("i=%d",i); what will be the answer????
What does *p++ do?
how to exchnage bits in a byte b7<-->b0 b6<-->b1 b5<-->b2 b4<-->b3 please mail me the code if any one know to rajeshmb4u@gmail.com
what is the difference between postfix and prefix unary increment operators?
What is the meaning of ?
Write a program that can show the multiplication table.