Pages
Home
C++/C- Programs
DOS Commands
BS Communication
Mathematics
Advertisement
About Us
Contact us
Sunday, December 9, 2012
WAP to compare two Strings 43
#include<stdio.h>
#include<conio.h>
void main()
{
Read more »
WAP to find largest value from Matrix using UDF 49
#include<stdio.h>
#include<conio.h>
void max();
void main()
{
Read more »
WAP to find Transpose of Matrix 38
#include<stdio.h>
#include<conio.h>
main()
{
int i,j,k,a[3][3],b[3][3],c[3][3];
clrscr();
Read more »
WAP to take input from user reverse it and check its Palindrome or Not 42
#include <stdio.h>
#include <conio.h> main() { int n, reverse = 0, temp;
Read more »
WAP to print 1234... pattern 31
#include<stdio.h>
#include<conio.h>
void main()
{
int a,n,i,j;
clrscr();
Read more »
WAP to print numbers which divided by 6 but divided by 4 also count them 46
#include<stdio.h>
#include<conio.h>
#define p printf
#define s scanf
void main()
{
Read more »
WAP to count Upper case and Lower case from Array 40
#include<stdio.h>
#include<conio.h>
#include<string.h>
void main()
{
char sen[100];
Read more »
WAP to sort integer array in Descending and Ascending Order 36
#include<stdio.h>
#include<conio.h>
#define p printf
#define s scanf
void main()
{
Read more »
WAP that sort integer array in Ascending order 35
#include<stdio.h>
#include<conio.h>
#define p printf
#define s scanf
void main()
Read more »
WAP to find X power without using Power Function 34
#include<stdio.h>
#include<conio.h>
#define p printf
#define s scanf
void main()
{
Read more »
WAP to print pattern 32
#include<stdio.h>
#include<conio.h>
void main()
{
int i,j,n;
clrscr();
Read more »
WAP to print pattern 30
#include<stdio.h>
#include<conio.h>
void main()
{
char a=122;
int i,j;
Read more »
WAP to print Az By Cx Dw Series 29
#include<stdio.h>
#include<conio.h>
void main()
{
char i,j;
Read more »
WAP to print Armstrong Number 27
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,i,rem,sum=0,n;
clrscr();
Read more »
WAP to print Prime Number between two number 26
#include<stdio.h>
#include<conio.h>
void main()
{
int a,c=0,i,n;
clrscr();
Read more »
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();
Read more »
WAP to print Pascal's Triangle 24
#include<Stdio.h>
#include<conio.h>
void main()
{
int a[20][20],i,j,n;
clrscr();
Read more »
Newer Posts
Older Posts
Home
Subscribe to:
Posts (Atom)