Tengo problemas para declarar una variable de cadena. El código y los errores están aquí: http://pastebin.com/TEQCxpZd ¿Alguna idea de lo que estoy haciendo mal? Además, manténgalo independiente de la plataforma. ¡Gracias!C++ String Variable Declaration
#include <stdio.h>
#include <string>
using namespace std;
int main()
{
string input; //Declare variable holding a string
input = scanf; //Get input and assign it to variable
printf(input); //Print text
return 0;
}
Getting this from GCC:
main.cpp: In function ‘int main()’:
main.cpp:53:10: error: invalid conversion from ‘int (*)(const char*, ...)’ to ‘char’
main.cpp:53:10: error: initializing argument 1 of ‘std::basic_string<_CharT, _Traits, _Alloc>& std::basic_string<_CharT, _Traits, _Alloc>::operator=(_CharT) [with _CharT = char, _Traits = std::char_traits<char>, _Alloc = std::allocator<char>, std::basic_string<_CharT, _Traits, _Alloc> = std::basic_string<char>]’
main.cpp:54:14: error: cannot convert ‘std::string’ to ‘const char*’ for argument ‘1’ to ‘int printf(const char*, ...)’
¿Qué le dio la idea 'input = scanf' era válida? – GManNickG
Posiblemente desde Pascal, donde puede llamar a una función sin el '()'. – dan04
Eso es extraño, C++ no es Pascal. – GManNickG