Sunday, December 9, 2012

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();

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;

WAP to print 1234... pattern 31


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

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()
{

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];

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()
{

WAP that sort integer array in Ascending order 35


#include<stdio.h>
#include<conio.h>
#define p printf
#define s scanf

void main()

WAP to find X power without using Power Function 34


#include<stdio.h>
#include<conio.h>
#define p printf
#define s scanf

void main()
{

WAP to print pattern 32


#include<stdio.h>
#include<conio.h>
void main()
{
 int i,j,n;
 clrscr();

WAP to print pattern 30


#include<stdio.h>
#include<conio.h>
void main()
{
  char a=122;
  int i,j;