nimbuzz loginbot@nimbuzz.com

Nice review almost 1000 users are using the loginbot@nimbuzz.com everyday .
Countries which are using loginbot are India , Pakistan , Iraq , USA etc. Thanks for using loginbot
If you havnt add it yet then add it on your nimbuzzz id : loginbot@nimbuzz.com 

EVOGALX NIMBUZZ ROOM FLOODER NEW v1.2

A new floooder is released today by evogalx members this is the new version of very first flooder of evogalx team. This flooder is also very user friendly you can use it in nimbuzz chat rooms .

NIMBUZZ LOGINBOT TO HANG YOUR IDS IN CHAT ROOM WITHOUT USING SOFTWARE

As bots are becoming part of nimbuzz let me introduce you with a new bot which will hang your ids in chat room and fill your room by random ids its very user friendly bot and very simple to use 
what you have to do is :
* Add loginbot@nimbuzz.com or mobileserver@nimbuzz.com , the bot will add you instantly if its on.
* After adding loginbot send a message in to bot private , this bot will not reply you.
* Just send the bot the information about the id and Pass_word you wana hang in room , the room name and the message you want to display in room.
* It must be look like this : userid#Pass_word#room name# message
once you type send it to loginbot and your id will be enter in the room , try it .

YOU CAN ALSO ADD TO LANGUAGE TRANSLATOR BOTS 
tagalog_test@bot.nimbuzz.com
hindi_test@bot.nimbuzz.com
HAVE SAFE AND DECENT NIMBUZZING Wink

HOW TO MAKE YOUR FACEBOOK PROFILE LOOK DIFFERENT AND USING DESIGN FONT IN YOUR PROFILE NAME

http://mydevice.in/?p=668
CHECK OUT THE LINK :)

PROGRAM ON ATTENDANCE SYSTEM ON C PROGRAMMING

// Registration no    11108008
// Name            Kishore Rawat
// Course        B.Tech(Cse)
// Project        Attendence System


#include<stdio.h>
#include<conio.h>
#include<process.h>
struct student
{
    char name[20];
    int rollno;
    char attend;
}s[100];
int main()
{
    FILE *f;
    int i,n,a,b,dd,mm,yy,m,j;
    char c;
    clrscr();
    printf("\n\n\n\n\n                     ATTENDENCE SYSTEM\n\n");
    printf("                     * PRESS 3 TO VIEW PREVIOUS ATTENDENCE IF HAD TAKEN\n");
    printf("                     * PRESS 1 FOR GIVING INPUT\n");
    printf("                     * PRESS 2 FOR TAKING ATTENDENCE\n");
    printf("                     * PRESS 4 FOR EXIT\n");
    printf("     \n\n\t\t     :");
    scanf("%d",&m);

    if(m==1)
    {

        clrscr();
        printf("ENTER THE CLASS STRENTH  :  ");
        scanf("%d",&n);
        for(i=1;i<=n;i++)
        {
            printf("ENTER %d STUDENT NAME  :",i);
            scanf("%s",&s[i].name);
            printf("ENTER ITS ROLLNO  :");
            scanf("%d",&s[i].rollno);
        }
        f=fopen("make.txt","w");
        for(i=1;i<=n;i++)
        {
            fprintf(f,"Roll no: %d\tName: %s\n",s[i].rollno,s[i].name);
        }
    fclose(f);
    return main();
    }

    else if(m==2)
    {
        clrscr();
        printf("\n\t\t\tTAKING ATTENDENCE");
        printf("DATE(DD/MM/YY): ");
        scanf("%sd%sd%sd",&dd,&mm,&yy);
        printf("\t\tPRESS ENTER WHEN READY!!");
        for(i=0;i<n;i++)
        {
            printf("\nRoll no: %d \t \tName:%s  ",s[i].rollno,s[i].name);
                        printf("\n\nenter attendence status for %s:",s[i].name);
            scanf("%c",&s[i].attend);
                        continue;

        }
        f=fopen("make1.txt","a");
        printf("ATTENDANCE ON %sd-%sd-%sd",dd,mm,yy);
        for(i=0;i<n;i++)
        {
            fprintf(f,"Attendence: %c         Roll no: %d           Name: %s\n",s[i].attend,s[i].rollno,s[i].name);
        }
        fclose(f);
        getch();
        return main();
    }

    else if(m==3)
    {
        clrscr();
        f=fopen("make.txt","r");
        fprintf(f,"ATTNDENCE FOR DATE %sd-%sd-%sd",dd,mm,yy);
        for(i=0;i<=n;i++)
        {
            fprintf(f,"Name: %s   Roll no: %d    Attendence: %c ",s[i].name,s[i].rollno,s[i].attend);
        }
        getch();
        fclose(f);

    }
    else if(m==4)
    {
        printf("");
    }
    else if(m)
    {
        printf("INVALID SELECTION!!");
        return main();
    }
}





PROGRAM ON ATTENDANCE SYSTEM ON C PROGRAMMING

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

struct student
{
    int rollno;
    char name[20];
    int number_present;
    int number_absent;
};
void main()
{
    struct student s[10];
    int i;
    clrscr();
    printf("enter the data for the students:\n\n");

    for(i=0;i<2;i++)
    {
        printf("enter the rollnumber:");
        scanf("%d",&s[i].rollno);
        printf("\n\nenter the name:");
        scanf("%s",&s[i].name);
        printf("\n\n enter the total days");
        scanf("%d",&s[i].number_present);
        printf("\n\nenter the absent days");
        scanf("%d",&s[i].number_absent);
    }

    printf("data for student:\n\n");

    for(i=0;i<2;i++)
    {
        printf("roll number=%d",s[i].rollno);
        printf("name=%s\n\n",s[i].name);
        printf("total present day=%d\n\n",s[i].number_present);
        printf("total absence day=%d\n\n",s[i].number_absent);
    }

    getch();
    }

PROGRAM ON SUPER MARKET BILLING ON C PROGRAMMING

 PROGRAM ON SUPER MARKET BILLING ON C PROGRAMMING

//NAME:--          ABHAY DWIVEDI
//Reg. No.:--      11109906
//Section:--       K1104
//Roll No.:--      RK1104A28

#include<stdio.h>
#include<conio.h>
struct slip
{
    char name[20];
    int qty;
    int price;
}s[100];
void main()
{
    int i,n,j=1;
    float d,t3=0,t=0,t1=0,t2=0,s1=0;
    clrscr();
    printf("\n\n\n\n\n\n\n            WELCOME TO SUPER MARKET BILLING");
    getch();
    clrscr();
    printf("ENTER NO. OF ITEM PURCHASE   :");
    scanf("%d",&n);
    for(i=1;i<=n;i++)
    {
        printf("ENTER %d ITEM NAME PURCHASE   :",i);
        scanf("%s",&s[i].name);
        printf("ENTER ITS QUANTIY  :");
        scanf("%d",&s[i].qty);
        printf("ENTER ITS PRICE   :");
        scanf("%d",&s[i].price);
    }
    clrscr();
    printf("\n\t\t\tPURCHASE BILL\n\n\n");
    gotoxy(1,6);
    printf("ITEM NAME  ");
    gotoxy(14,6);
    printf("QUANTITY  ");
    gotoxy(25,6);
    printf("PRICE ");
    gotoxy(35,6);
    printf("VAT ");
    gotoxy(40,6);
    printf("DISCOUNT");
    gotoxy(55,6);
    printf("TOTAL PRICE ");
    gotoxy(1,7);
    printf    ("_______________________________________________________________________");
    for(i=1;i<=n;i++)
    {
        gotoxy(1,8+j);
        printf("%s",s[i].name);
        gotoxy(14,8+j);
        printf("%d",s[i].qty);
        gotoxy(25,8+j);
        printf("%d",s[i].price);
        gotoxy(35,8+j);
        printf("5%");


        t=s[i].qty*s[i].price;
        t2=t+(0.05*t);

        if(t2<=2000)
        {
            gotoxy(40,8+j);
            printf("0%");
        }
        else
        if(t2>2000&&t2<5000)
        {
            d=10;
            gotoxy(40,8+j);
            printf("%f%",d);
        }
        else
        if(t2>=5000)
        {
            d=20;
            gotoxy(40,8+j);
            printf("%f%",d);
        }
        gotoxy(55,8+j);
        t3=(d/100)*t2;
        t1=t2- t3;
        printf("%f",t1);
        s1=s1+t1;
        j=j+2;
        t=0;
        t1=0;

    }
    printf("\n_______________________________________________________________________");
    printf("\n\nTOTAL SUM IS : %f",s1);
    getch();
    clrscr();
    printf(" \n\n\n\n\n\n\n\n\n\n\n\n\n\t\t\t\tTHANKS FOR USING SOFTWARE");
    getch();
}