Monday, November 30, 2015

A program to sum of two integer values.


#include < stdio .h >

#include < conio .h >
void main()
{
          int a,b,c;
          a=20;
          b=10;
          c=a+b;
          printf("sum of a & b is = %d",c);
}

Answer is:
30

Thursday, November 19, 2015

Tuesday, November 17, 2015

Computer Fundamentals Question/Ansewer


Q : What is Computer?
A : Computer is an electronic machine. That accept data(input), work on data(process), keep data(store), and give answer(output). 

Q : Who is the father of computer?
A : Charles Babbage is the father of computer. He is an English professor at Cambridge University. He developed a machine in 1822 called “ Difference Engine”. Difference Engine was a mechanical machine with gears, shafts, and driven by steam.

C++ Ques/Ans

Q: How many type of Storage Classes?
Ans : There are four types of classes in C.
1) Automatic Storage Class
2) Register Storage Class
3) Static Storage Class
4) External Storage Class