23-11-2009 Misja Helsloot - All Exclusive 008

How do you rate this show?


  • Total voters
    8
OK...see you later, I must leave for awhile - shoping mode -

nice to see you around!
 
A big hello from me to Ronny K....Just so much impressed from his work the last month...Good job Ronny....
 
nice set BTW, I was listening only on my pc but I told myself to go to ah.fm for awhile and to my good surprise there's some friends in the forums...

nice nioce The Cat Lady herself and some others more, hello to everyone here:

danmark_ori+, djchoub, Miss Glam +, MoiseS, SUNNY TOMORROW, dimmygud, Ronny K., AlexN, T-Rance, Luki Luciano, otacon88, Flenk


hola! enjoying the 2nd hour???
:choon:
 
nice set BTW, I was listening only on my pc but I told myself to go to ah.fm for awhile and to my good surprise there's some friends in the forums...

nice nioce The Cat Lady herself and some others more, hello to everyone here:

danmark_ori+, djchoub, Miss Glam +, MoiseS, SUNNY TOMORROW, dimmygud, Ronny K., AlexN, T-Rance, Luki Luciano, otacon88, Flenk
great decision acurio :):dance::dance:
 
nice set BTW, I was listening only on my pc but I told myself to go to ah.fm for awhile and to my good surprise there's some friends in the forums...

nice nioce The Cat Lady herself and some others more, hello to everyone here:

danmark_ori+, djchoub, Miss Glam +, MoiseS, SUNNY TOMORROW, dimmygud, Ronny K., AlexN, T-Rance, Luki Luciano, otacon88, Flenk

Acuario! Hi there! (KISS!) :super::hug::friends::love::cat:
 
#include <stdio.h>
#define LIST_SIZE 5000
typedef struct
{
char name[100];
char power[100];
int age;
int faction;
} XMan;
int main()
{
XMan list[LIST_SIZE];
int counter;
for(counter = 0; counter < LIST_SIZE; counter++)
{
printf("Enter Name\n");
scanf("%s", list[counter].name);
printf("Enter Power\n");
scanf("%s", list[counter].power);
printf("Enter Age\n");
scanf("%d", &list[counter].age);
printf("Enter 1 for good, 0 for evil\n");
scanf("%d", &list[counter].faction);
}
printf("%s\n%s\n%d\n%d\n", list[counter].name, list[counter].power, list[counter].age, list[counter].faction);
}

:rofl:
 
#include <stdio.h>
#define LIST_SIZE 5000
typedef struct
{
char name[100];
char power[100];
int age;
int faction;
} XMan;
int main()
{
XMan list
[LIST_SIZE];
int counter;
for(counter = 0; counter < LIST_SIZE; counter++)
{
printf("Enter Name\n");
scanf("%s", list[counter].name);
printf("Enter Power\n");
scanf("%s", list[counter].power);
printf("Enter Age\n");
scanf("%d", &list[counter].age);
printf("Enter 1 for good, 0 for evil\n");
scanf("%d", &list[counter].faction);
}
printf("%s\n%s\n%d\n%d\n", list[counter].name, list[counter].power, list[counter].age, list[counter].faction);
}

:rofl:

:w00t: :w00t: :w00t:
 

Back
Top