My doubt is that does "auto" keyword works in C++4.3.2? I was writing a program to check the presence of a prefix in a word, I wrote something like this --
auto res = mismatch(prefix,word);
And when I compiled it gave the error--
res was not declared in scope
What should I use in place of "auto" in case if "auto" is not available in c++4.3.2.
Here u can see my full code-- http://paste.ubuntu.com/9351873/