Basics of C
Format :
#include "stdio.h" \* Header files*/
#include "conio.h "
...
Monday, November 26, 2012
Sunday, December 6, 2009
SUM OF EVEN NUMBERS
06
Dec, 2009
Author: Raviteja
|
Filed Under:
c++
|
0
comments
Write a program to accept a number 'n' from the user and print the sum of all even numbers from 2 to number 'n'.
#include "iostream.h"
#include "conio.h"
class demo
{
public:
int a,b,i;
void sum ();
};
void demo ::sum()
{
cout<<"\n\nEnter a number : ";
cin >> a;
for(i=2,b=0;i<=a;i++)
{
if(i%2==0)
...
Diomand By Asterix Symbols
06
Dec, 2009
Author: Raviteja
|
Filed Under:
c
|
0
comments
#include "stdio.h"
#include "conio.h"
void main()
{
int a,b,c,d,n,m,x;
clrscr();
printf("Welcome to astrick Diomand\n\n");
printf("Enter a number ");
scanf("%d",&n);
m=n-1;
d=1;x=1;
for(a=1; a<=n; a++)
{
for(b=1; b<=m; b++)
{
printf(" ...
SUM OF DIGITS
06
Dec, 2009
Author: Raviteja
|
Filed Under:
c++
|
0
comments
#include "iostream.h"
#include "conio.h"
class digit
{
private:
long int n,N,q,r;
public:
digit ()
{
N = 0;
}
void accept ()
...
STUDENT GRADE
06
Dec, 2009
Author: Raviteja
|
Filed Under:
c++
|
0
comments
#include "iostream.h"
#include "conio.h"
class grade
{
private:
int r,m[3];
float p;
public:
void accept ()
{
cout << "Enter student details\n\n";
...
SQUARE OF A Number
06
Dec, 2009
Author: Raviteja
|
Filed Under:
c++
|
0
comments
#include "conio.h"
#include "iostreame.h"
class demo
{
public :
int a,b,c;
void sum();
};
void demo :: sum()
{
b=0;
clrscr();
cout<<"Enter the Number : ";
cin>>a;
cout<<"\nThe Number You Entered is : "<
c=a*a;
cout<<"\n\nThe Square Of the Number is : "<
}
void main()
{
demo obj;
obj.sum();
getch();
}
Get...
PRIME OR NOT
06
Dec, 2009
Author: Raviteja
|
Filed Under:
c++
|
0
comments
#include "iostream.h"
#include "conio.h"
class prime
{
private:
int n;
public:
void accept ()
{
cout << "Enter a number: ";
cin >> n;
...
PALINDROME
06
Dec, 2009
Author: Raviteja
|
Filed Under:
c++
|
0
comments
#include "iostream.h"
#include "conio.h"
class demo
{
private:
int n,N,q,r,R;
public:
void cal ();
};
void demo :: cal ()
{
cout << "Enter the Number: ";
cin >> n;
if(n<=0)
cout << "The is invalid\n";
...
OPERATOR
06
Dec, 2009
Author: Raviteja
|
Filed Under:
c++
|
0
comments
#include "iostream.h"
#include "conio.h"
int g=1000;
class f
{
public:
void c();
private:
int g;
};
void f::c()
{
g=500;
cout<<"\n the value of g by outside "<
{
g=100;
cout<<"\n the value of g by...
MULIPLE TABLE
06
Dec, 2009
Author: Raviteja
|
Filed Under:
c++
|
0
comments
#include "iostream.h"
#include "conio.h"
class mult
{
private:
int n,x;
public:
void accept ()
{
cout << "Welcome to Multiple Table\n\n";
cout << "Enter...
Subscribe to:
Posts (Atom)