Paper Measurement(Convert ream to sheets)

1 ream contains 500 sheets of paper C Program #include <stdio.h> #include <stdlib.h> int main() { int s,r; printf("Enter total ream of paper:"); scanf("%d",&r); s=r*500; printf("Total sheets of paper in %d ream is %d",r,s); return 0; } Java Program import java.util.Scanner; public class PaperMeasurement { public static void main(String[] args) { Scanner...

Caculate Profit

Profit is calculated by subtracting cost price from selling price. That is, Profit = SellingPrice - CostPrice C Program #include <stdio.h> #include <stdlib.h> int main() { int p,cp,sp; printf("Enter Cost Price:"); scanf("%d",&cp); printf("Enter Selling Price:"); scanf("%d",&sp); p=sp-cp; printf("Profit from the item is %d",p); return 0; } Java...

WorkDone(W=F*N)

C Program #include <stdio.h> #include <stdlib.h> int main() { int w,f,d; printf("Enter Force(N): "); scanf("%d",&f); printf("Enter Distance travelled by the body(m): "); scanf("%d",&d); w=f*d; printf("The work done is %d Joules",w); return 0; } Java Program import java.util.Scanner; public class WordDone { public static void main(String[] args)...

OHMS LAW(V=IR)

Ohm’s law explains the relationship between voltage and current flowing through resistors. The mathematical formula is V=IR. C Program #include <stdio.h> #include <stdlib.h> int main() { int v,i,r; printf("Enter current(Amphere):"); scanf("%d",&i); printf("Enter Resistance(Ohm):"); scanf("%d",&r); v=i*r; printf("Voltage of the circuit is %d",v); ...

What is Electronics?

Electronics is the branch of science and engineering which deals with the study of behavior and movement of electrons in different materials. It can also be defined as the engineering branch, which is concerned with the design of electronic circuits using different electronic components like...

Difference between Pre Increment and Post Increment

Pre Increment and Post Increment are the features of unary operators. Unary operators are the important concepts of programming and is very easy to learn. Unary operators are mostly used to looping statements, function calls, etc. The unary operators have high precedence in C compared to other operators.(click here to check precedence table). Unary operators are operators with only one operand....

C OPERATORS PRECEDENCE AND ASSOCIATIVITY

Rank Operator Explanation Associativity 1 () [] . -> Parenthesis Square brackets Direct Member selection Indirect Member selection   Left to right 2 ++ -- ! ~ (type) & * Increment Decrement Logical negation Bitwise complement Type casting Address Pointer...