B
Bill Cunningham
#include <stdio.h>
#include <time.h>
int cypher(int a)
{
srand(time(NULL));
int c = rand();
a*c;
return c;
}
I have written this code to act as an encryption key generator. Why when
I use gcc -s cyph.c on this code the compiler will not create cyph.o for me
to keep as an obj file or add to a library?
Bill
#include <time.h>
int cypher(int a)
{
srand(time(NULL));
int c = rand();
a*c;
return c;
}
I have written this code to act as an encryption key generator. Why when
I use gcc -s cyph.c on this code the compiler will not create cyph.o for me
to keep as an obj file or add to a library?
Bill