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 |
why in C,C++'s int size is 2 byte and .net(c#) int Size is 4 byte?
logic for x=y^n
What is C++
What is use of bit field?
Why the below program throughs error during compilation? #include<stdio.h> #include<conio.h> enum { ZERO, ONE, TWO, }; main() { printf("%d",&TWO); getch(); }
int a=2,b=3,c=4; printf("a=%d,b=%d\n",a,b,c); what is the o/p?
Write a C program to print 1 2 3 ... 100 without using loops?
Write programs for String Reversal & Palindrome check
Can you write a programmer for FACTORIAL using recursion?
explain what are actual arguments?
design and implement a data structure and performs the following operation with the help of file (included 1000 student marks in 5 sub. and %also) 1.how many students are fail in all 5 subjects (if >35) 2. delete all student data those are fail in all 5 subjects. 3. update the grace marks (5 no. if exam paper is 100 marks) 4. arrange the student data in ascending order basis of marks. 5.insert double of deleted students with marks in the list.
What is the right type to use for boolean values in c? Is there a standard type?