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 bkrike 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 brunofeu

  1. brunofeu

    make for-loop stop when it reaches the end of a string

    I just found out why is this error happening: it cannot find this files: -strcat.asm -vsprintf.c does anyone knows how to solve this problem? Thank you for your time, Bruno Feu
  2. brunofeu

    make for-loop stop when it reaches the end of a string

    The problem is: I cannot (or don't know how to) use string inside this, the compiler does not recognize it. It says "std is not a class member". If I just use "string item;", it says thay there's a semicolon missing between string and item. That makes me use char[50]. Also...
  3. brunofeu

    make for-loop stop when it reaches the end of a string

    Question 1) #include <iostream.h> void main (void){ char word [50]; cin >> word; for (int i=0;word[i]!='ENTERLETTERHERE';i++){ cout << word[i] << &quot; &quot;; } } there should be some letter or maybe a \letter that, when replacing the ENTERLETTERHERE part of this code, works. What I...

Part and Inventory Search

Back
Top