A simple C program to get ur NIC number and show the details....
//Nic & details display
#include<stdio.h>
#include<conio.h>
void main()
{
char myic[11];
char my[5], md[4];
int i,j,y,m,d,msex;
int mon[12]={31,29,31,30,31,30,31,30,31,30,31,30};
clrscr();
printf("enter your NIC......? ")...