Wednesday, April 17, 2013

Introduction about Linux in C Programming ( Linux Material )


Introduction to Linux:-

Linux is a Unix-like computer operating system assembled under the model of free and open source software development and distribution.

The defining component of Linux is the operating system kernel first released 5 October 1991 by Linus Torvalds.

Linux was originally developed as a free operating system for Intel x86-based personal computers.

It is a leading operating system on servers and other big iron systems such as mainframe computers and supercomputers.

Sunday, April 7, 2013

Most IMP Advanced C-Programming Questions (University Exam)


1.       State different between Array & Structure with example
2.       Explain structure with pointer with suitable example
3.       State different between Array with example
4.       State different between automatic & external variable with example
5.       Different between Global Variable & Static Variables with example

Friday, April 5, 2013

Normalization Flow Chart


Normalization step by steps:-


1.       Check, If there are any comma separated value. If yes then create a row for single data.
2.       Check for primary key, It must exist.
3.       Check weather Primary key -> Composite key. If no, then table is already in 2nd Normalization Form. Else draw dependency diagram and follow the process to convert table in 2NF. It removes partial dependency.
4.       Check if there exists any Transitive dependency. If no, Table already in 3NF.

Thursday, April 4, 2013

WAP Structure with File Handling


#include<stdio.h>
#include<conio.h>
struct product
{
int c;
char name[20];
int qty,cost;
}p[100];

How to Draw House,Tree & Sun with C-Graphics


#include<graphics.h>
#include<conio.h>
void main()
{
int gd=DETECT ,gm;
int p[]={320,150,420,300,250,300,320,150};
initgraph(&gd,&gm,"C:\\TC\\BGI");
cleardevice();

Collect Sem-2 C-Programs

You total C-Program must up to 40