Hi, all... I'm a student taking my first C++ class. The semester's almost over & I've<br>written a complex program (well, complex to me!) that is giving me some headaches. <br><br>The following code is a -very- simplified version of a portion of my program code that is giving me the same error. I'm passing char strings (two-dimensional) by pointer, but C++ doesn't like how I've done it... <br><br>I also get an error when I use (strcpy). Am I supposed to use [] or row/column info when in a strcpy command? I've tried it with & without in several different ways, but no luck. The error reads something like "cannot convert char * to const char *"... What I'm trying to do is alphabetically sort by bubble sort.<br><br>please help me understand why this simple little code isn't working... thanks!!<br><br> void Trial(int *); <br><br>void main(void)<br>{ int x = 36;<br> Trial(x); <br>} <br><br>void Trial(int *y)<br>{ cout << y << endl;<br>}<br><br><br>ERROR:<br><br>error C2664: 'Trial' : cannot convert parameter 1 from 'int' to 'int *'. <br>Conversion from integral type to pointer type requires reinterpret_cast, C-style cast or function-style cast