Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. chandrupm

    Compile with cygwin32(MySQL connectivity)

    Hi, I am tring to write an application which connects to the MySQL(not on UNIX). I am using 'cygwin32' to compile my program, but I donot know how to link in 'libmysqlclient' to get my program to work. Pls help Thanx in advance regards, Chandru
  2. chandrupm

    concatenation of two strings

    I am sorry, donot use my first message....... There are some currections...... use this........ prototype: char* strcat(char *str1,char *str2); but here 'str1' should be big enough, so that the resultant string can fit in. char* strcat(char *str1,char *str2) {...
  3. chandrupm

    concatenation of two strings

    You can use the following function. prototype: char* strcat(char *str1,char *str2); but here str1 should be big enough, such that the resultant string can fit in. char* strcat(char *str1,char *str2) { int i; int j...
  4. chandrupm

    Compiling with cygwin32(MySQL connectivity)

    Hi, I am tring to write an application which connects to the MySQL(not on UNIX). I am using 'cygwin32' to compile my program, but I donot know how to link in 'libmysqlclient' to get my program to work. Pls help Thanx in advance regards, Chandru

Part and Inventory Search

Back
Top