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 strongm 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. 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...
  16. qiqinuinaifen128

    Hashing Table

    Thank For Your Code, Actually i am not so understand the code, Can briefly describe a bit.. Many Thanks ^_^ Singapore Swimming Lessons http://www.swimmingclasses.com.sg
  17. qiqinuinaifen128

    Pointer to pointer

    Hi is there any learning Material for learning node pointer? Thank you for reply. ^_^ Singapore Swimming Lessons http://www.swimmingclasses.com.sg
  18. qiqinuinaifen128

    Hashing Table

    The part of hash table, i have done it, now the problem is i don't know how what i am going to do, For example, now i have a word "MoveForward". it already stored in the hash table and have a hash key of 27. What should i do in order to link the MoveForward command to the words or hash key, so...
  19. qiqinuinaifen128

    Hashing Table

    Sorry for make you confuse.. My function mean is a series of command. And the note mean something like a stack can store words, structure, number and so on... Actually now i have a project on hand that using hash table to store some humum language, and the humum language will point to a stack...
  20. qiqinuinaifen128

    Hashing Table

    Dear all, I have a question about hashing,i have create an hash table, and inserting the word and get the hashing key already. Now i want to store my function in to the node, what should i do? Any recommend would appreciate. Best Regard Thank You. Singapore Swimming Lessons...

Part and Inventory Search

Back
Top