Sunday, December 9, 2012

WAP to print Az By Cx Dw Series 29


#include<stdio.h>
#include<conio.h>

void main()
{
char i,j;

WAP to print Armstrong Number 27


#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,i,rem,sum=0,n;
clrscr();

WAP to print Prime Number between two number 26


#include<stdio.h>
#include<conio.h>
void main()
{
int a,c=0,i,n;
clrscr();

WAP to print Decimal to Binary 25


#include<stdio.h>
#include<conio.h>
void main()
{
long int no,rem=0,base=1,number=0,i;
clrscr();

WAP to print Pascal's Triangle 24


#include<Stdio.h>
#include<conio.h>

void main()
{

int a[20][20],i,j,n;
clrscr();

Saturday, December 8, 2012

WAP to Create Simple Calculator


#include<stdio.h>
#include<conio.h>
void main()
{
            int a,b,c,k;
            clrscr();
           
            printf("1 for Addition\n2 for Substract\n3 for Multiplication\n4 Devision");
            printf("\n\nEnter Your Choise : ");
            scanf("%d",&k);

WAP to print reverse it and check number is Palindrome or Not

#include<stdio.h>
#include<conio.h> 
main()
{
   int n, reverse = 0, temp;
 
   printf("Enter a number to check if it is a palindrome or not\n");
   scanf("%d",&n);
 

WAP to print Prime Factor entered Number

#include<stdio.h> 
#include<stdio.h>
 
main()
{
   int n, i = 3, count, c;
 
   printf("Enter the number of prime numbers required\n");
   scanf("%d",&n);

Friday, November 30, 2012

Download C Materials by Vilpa Mam

Download C Programming Language's important notes given by Vilpa Mam. There is total 7 documents. I have uploaded on this SMIT GUIDE Blog. If you want to read that important then download all the files from below given links. These all file in .doc format so it will open in Microsoft Word Application.

Sunday, November 25, 2012