Ok i looked into it, got something made, tho microsoft MSDN was no help at all, and i do remeber there used to be a random command where you just stick in the ranges, but M$ had no info on this instead i came up with this lil example<br>
<br>
#include <iostream.h><br>
#include <stdlib.h><br>
#include <stdio.h><br>
#include <time.h><br>
<br>
void main( void )<br>
{<br>
int i,j; char tmp[13];<br>
i=j=0;<br>
srand( (unsigned)time( NULL ) );<br>
for( i = 0; i <= 12;i++ )<br>
{<br>
<br>
while((j<48) ¦¦ ((j>57)&&(j<65)) ¦¦ ((j>90)&&(j<97)) ¦¦ (j>122))<br>
{<br>
j = rand();<br>
}<br>
tmp<i> = j;<br>
cout<<j<<' ';<br>
j=0;<br>
}<br>
tmp[13]='\0';<br>
cout<<'\n'<<tmp;<br>
}<br>
/*<br>
48->57 numbers<br>
65->90 capital letters<br>
97->122 lowercase letters<br>
*/ <p>Karl<br><a href=mailto:kb244@bellsouth.net>kb244@bellsouth.net</a><br><a href=
</a><br>