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 difference between fork() and vfork()?
There are 3 baskets of fruits with worng lables,one basket has apple,another basket has orange,another has combination of apple and orange,what is the least way of interchange the lables.
15 Answers Cisco, Google, MBT,
What are the benefits of c language?
how can i get output the following... 5 4 3 2 1 4 3 2 1 3 2 1 2 1 1 and 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 plz plz...
what is the output of below pgm? void main() { int i=0; if(i) printf("pass"); else printf("fail"); }
write a c programme for add of two numbers with out use of arthematic operators
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers
Can you write the function prototype, definition and mention the other requirements.
Input is "Jack and jill went up a hill" To print output is 1-letter word(s)-1 2-letter words-1 3-letter words-1 4-letter words-4
what is computer engg
What are the back slash character constants or escape sequence charactersavailable in c?
int main() { int i=1; switch(i) { case '1': printf("hello"); break; case 1: printf("Hi"); break; case 49: printf("Good Morning"); break; } return 0; }