> September 2011 ~ Online tutorial

mark list program in c

The following program get Marks Card Details and shows Min and Max marks as the output.#include<stdio.h>#include<conio.h>struct markscard {                                       ...

print without using semicolon

    #include "conio.h"    #include "stdio.h"    void main()    {    if(printf("hello")&&getch())   ...

multiplication tables using c

0*10 Multiplication Table C code.Sample Code    #include<stdio.h>    #include<conio.h>    main()    {    int row,column;    clrscr();    puts("tttMULTIPLICATION TABLE");    puts("nttt********************");   ...

armstrong number in c

#include <stdio.h>#include <stdlib.h>#include <string.h>#include <math.h>void main(){        long num1,num2=0,mcount=0, nums;        char str1[35], strc;        clrscr();        printf("Enter...

doubly linked list program in c

doubly linked list program in c         This a sample program of double linked list! the advantage of double over single is that singly linked list has the node inserted only at one end. and the pointer corresponds to the next pointer. but in a doubly linked list, the node pointer points to the both previous and the next node....

single linked list program in c

Single linked list inplementation using different functions 1. Insert a number at the beginning 2. Insert a number at last 3. Insert a number at a particular location in list 4. Print the elements in the list 5. Print the total number of elements in the list 6. Delete a node in the linked list 7. Reverse a linked list 8. Get out of linked list Sample...

WINDOWING TO VIEWPORT MAPPING

v\:* {behavior:url(#default#VML);} o\:* {behavior:url(#default#VML);} w\:* {behavior:url(#default#VML);} .shape {behavior:url(#default#VML);} Normal 0 false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4 ...

dda line drawing algorithm in c

DDA Line drawing Algorithm The digital differential analyzer (DDA)  is a scan-conversion line algorithm. In this algorithm, we sample the line at unit intervals in one coordinate and determine corresponding integer values nearest the line path of the other coordinate and plot those coordinate (pixel) in computer screen. Consider first a line...

bresenham’s ellipse drawing algorithm c program

v\:* {behavior:url(#default#VML);} o\:* {behavior:url(#default#VML);} w\:* {behavior:url(#default#VML);} .shape {behavior:url(#default#VML);} Normal 0 false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4 ...