You probably want to get to UTF-8 representation of the NSString:
NSString *param = [paramsToPass objectAtIndex:0]
[class gseInit:&getData];
[class gseCom:[param UTF8String]];
NSLog(@"%@", param);
However that will only work if gseCom: is not updating the string (i.e. param is const char *). The only way to really know this is to read the documentation for the class (you don't mention what the class is, so I can't help there).
If it's not updating the parameter, and gseCom is mistakenly defined as accepting a char *, rather than a const char *, then you can simply cast it to the correct type:
[class gseCom:(char *)[param UTF8String]];
However if it's updating param, then you will need to give it a buffer to work with:
[class gseInit:&getData];
NSString *param = [paramsToPass objectAtIndex:0]
// Create a buffer containing the c-string (in UTF-8)
#define BUFSIZ 256 // This size depends on what the string could hold
char cparam[BUFSIZ];
[param getCString:cparam maxLength:BUFSIZ encoding:NSUTF8Encoding];
// Let the method update the string
NSLog(@"before %s", cparam);
[class gseCom:cparam];
NSLog(@"after %s", cparam);