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 dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by qiqinuinaifen128

  1. qiqinuinaifen128

    How to check whether the string is number?

    How to use this command inside my below command?i want to check whether text[1]to text[5] whether it is number? #pragma hdrstop #include <stdio.h> #include <conio.h> #include <string.h> #pragma argsused char **text; int i; char str[] = ": Goolie p q h k clearLeftState ;"; char *token; char...
  2. qiqinuinaifen128

    How to check whether the string is number?

    Hi all is anybody know how to check whether the string is number? Many thanks Singapore Swimming Lessons http://www.swimmingclasses.com.sg
  3. qiqinuinaifen128

    split text

    Thank You for your code. i fix my problem already. May i know is there any other method to split the text? Singapore Swimming Lessons http://www.swimmingclasses.com.sg
  4. qiqinuinaifen128

    interpreter

    can you provide me some example? Singapore Swimming Lessons http://www.swimmingclasses.com.sg
  5. qiqinuinaifen128

    split text

    How can i split the text that key in by user, for example if the user key in "MoveForward To 123", how can i split the "MoveForward" to one field, "To" in to one field and 123 in to another field.. below is my simple print and scanf char y; printf("Please Enter Your Command:"); scanf("%s"...
  6. qiqinuinaifen128

    interpreter

    Hi there, is anybody using c writing an interpreter before? i want to interpret a string which key by user, What command should i use? Singapore Swimming Lessons http://www.swimmingclasses.com.sg
  7. qiqinuinaifen128

    Debugger Exception Notification

    Thank you! Solve it already #pragma hdrstop #pragma argsused #include <stdio.h> #include <conio.h> #include "string.h" char **word; int i; void add( char *newWord ) { word = new char*[10]; word[ 1 ] = new char[ strlen( newWord ) + 1 ]; strcpy( word[ 1 ], newWord ); } void main(int...
  8. qiqinuinaifen128

    Debugger Exception Notification

    Hi there, Below is my code, when i run it it show this error" Debugger Exception Notification" can anyone give me suggestion. Thank You. #pragma hdrstop #pragma argsused #include <stdio.h> #include <conio.h> #include "string.h" char **word; int i; void add( char *newWord ) { word[ i ] =...
  9. qiqinuinaifen128

    Array Question

    Thank for you reply. May i know is that possible to store the "MoveForwad" in one array, because i am going to do a interpreter project. Singapore Swimming Lessons http://www.swimmingclasses.com.sg
  10. qiqinuinaifen128

    Array Question

    Hi there, If want to store "MoveForward" in an array, let's say i want to store it at this array X[1000], what command should i use? Thank for reply^_^ Singapore Swimming Lessons http://www.swimmingclasses.com.sg
  11. qiqinuinaifen128

    Pointer to Array

    Hi there, i need help for the pointer to array...Actually i have create my hash table and i can successfully get the hash key for the word i want to store, now i want to create a one dimension array and i use below command to create my hashtable, get the hashkey and add the word that i want...
  12. qiqinuinaifen128

    Analyze Code

    x = note [1000]; x[0].function(); What is the meaning? Singapore Swimming Lessons http://www.swimmingclasses.com.sg
  13. qiqinuinaifen128

    Pointer to Array

    All the data typ i have declared, and work propably. I dont know how to create the pointer function. Singapore Swimming Lessons http://www.swimmingclasses.com.sg
  14. qiqinuinaifen128

    Pointer to pointer

    Thank you for you link..i will go there study.. Singapore Swimming Lessons http://www.swimmingclasses.com.sg
  15. qiqinuinaifen128

    Pointer to Array

    Hi there, i need help for the pointer to array...Actually i have create my hash table and i can successfully get the hash key for the word i want to store, now i want to create a one dimension array and i use below command to create my hashtable, get the hashkey and add the word that i want...

Part and Inventory Search

Back
Top