Tuesday, December 25, 2012

C - Structure : 3 Students Marksheet


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

struct std
{
char nm[10],dep[10];
int t,id;
float p;

Sunday, December 23, 2012

WD CSS Attributes



CSS Attributes
Font Attributes:

Font-Size
To define size of font (10pt, 20pt)(pt=points)
Font-Style
To define font style (Italic, normal)
Font-weight
To define font weight (100, 200, and 300, bold...)
Font-Family
To define font family (Arial, Vardana, Calibri etc.)

Saturday, December 15, 2012

Semester 2 Computer Organization Syllabus



KSKV KACHCHH UNIVERSITY
BCA201- COMPUTER ORGANIZATION

MODERN COMPUTER ORGANIZATION                                                            (20%)
Introduction , Man and computing, User and computer, Computer Organization, Main Memory, CPU operation J Interrupt Concept, Bus Concept, Computer Types, Booting sequence.

BCA Semester 2 Advanced Programming with C Syllabus

5%
Error Editing
-          Concept of Debugging
-          Finding Errors in Programs
-          Error codes & Managing
-          Various Debugging option in Turbo C
-          Compiler
70%
Programming in C
Language
-          Storage Class

Sunday, December 9, 2012

WAP to compare two Strings 43


#include<stdio.h>
#include<conio.h>
void main()
{

WAP to find largest value from Matrix using UDF 49


#include<stdio.h>
#include<conio.h>
void max();
void main()
{

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;

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