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
Posted on August 24, 2021by HI_TECH SK with No comments
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)
Posted on August 21, 2021by HI_TECH SK with No comments
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)
Posted on August 19, 2021by HI_TECH SK with No comments
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);
...
Swapping Two Numbers using a 3rd variable
Posted on August 18, 2021by HI_TECH SK with No comments
...
Swap Two Numbers Without Using 3rd Variable
Posted on August 17, 2021by HI_TECH SK with No comments
...
What is Electronics?
Posted on August 06, 2021by HI_TECH SK

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
Posted on August 03, 2021by HI_TECH SK with 2 comments
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
Posted on August 02, 2021by HI_TECH SK with 1 comment
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...
Subscribe to:
Posts (Atom)