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
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...
Question 1)
#include <iostream.h>
void main (void){
char word [50];
cin >> word;
for (int i=0;word[i]!='ENTERLETTERHERE';i++){
cout << word[i] << " ";
}
}
there should be some letter or maybe a \letter that, when replacing the ENTERLETTERHERE part of this code, works. What I...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.