i m having trouble with converting a string to a char
just a sample of what i m doing:
the real stuff i use:
function("I",2, 3) ;
must be like
function("I",2, 3) ; and so on
Code:
function(char thing, int x , int y){
..................
}
int main(){
string input ;
function(input, 2,3) ;// does not work because it needs
//the first arg to be char
}
just a sample of what i m doing:
the real stuff i use:
function("I",2, 3) ;
must be like
function("I",2, 3) ; and so on
Comment