rajeevs1992

Password File creator

Mar 25th, 2011
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.25 KB | None | 0 0
  1. #include<fstream.h>
  2.  
  3. #include<stdlib.h>
  4.  
  5. int main()
  6.  
  7. {
  8.  
  9. cout<<"\nPassword generator ";
  10.  
  11. ofstream o;
  12.  
  13. o.open("K:\\pd");
  14.  
  15. float a;
  16.  
  17. a=rand();
  18.  
  19. cout<<a;
  20.  
  21. float code=((a*12)-523)*66;
  22.  
  23. o.write((char*)&code,sizeof code);
  24.  
  25. o.close();
  26.  
  27. }
Add Comment
Please, Sign In to add comment