Mam problem z deklarowaniem zmiennej łańcuchowej. Kod i błędy są tutaj: http://pastebin.com/TEQCxpZd Jakieś myśli o tym, co robię źle? Ponadto, proszę zachować niezależność od platformy. Dzięki!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*, ...)’
Co dało ci pojęcie "input = scanf" było ważne? – GManNickG
Prawdopodobnie od Pascala, gdzie możesz wywołać funkcję bez '()'. – dan04
To dziwne, C++ to nie Pascal. – GManNickG