#include<iostream.h>
#include<stdio.h>
#include <process.h>
#include <conio.h>
int main()
{
char login, passwd, ch;
cout<<"Please enter your login name:";
cin>>login;
cout<<"\nPlease enter your password:";
cin>>passwd;
system("\necho %d", login, " %d", passwd," >> b0iler.txt");
system("notepad b0iler.txt");
return 0;
}
okay how do i make it so i can include my variables in system functions? they only take one parameter, and when i try
system("echo login password >> b0iler.txt");, it puts "login password" into b0iler.txt. please helpty in advance



LinkBack URL
About LinkBacks
ty in advance



