- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
8 Posted Topics
Hi, I am having problem in compiling the following piece of simple code(it didn't work in any of the compilers VC++,GCC etc) [code] #include<iostream> using namespace std; int main() { while((char c = cin.get()) != 'q') cout<<endl<<"Character printed = "<<c<<endl; } [/code] ERRORS: expected primary-expression before "char" expected `)' before … | |
Hello, i am a naive in C/C++ and pretty confused about how does the compilation process work in the background, can you explain in detail (or give me a link about it) ? in particular can you please tell me: how are declarations in header file associated with the definitions … | |
Hi, I am a newbie, can someone please clarify the difference between "\0" and '\0' and 0 as far as C++ is concerned?? Why can't they be used inter-changeably ?? | |
I want to assign a TCHAR char array to std::string in VC++ 2005, how should i do that? a simple assignment gives error i.e TCHAR buffer[MAX-1]; std::string data; //some operation for filling the buffer data = buffer; //This gives error Plz help me in doing this operation. | |
hi everyone, i am a fledgling in this field, can any one please explain what are hard links and soft links in context of OS and why are they required? Also can u also give some practical application of hard links and soft links to further clarify the concept!! | |
Hi i am new to Programming C++ in Visual C++, can anyone plz help me with the concept of UNICODE Programming in VC++, can anyone suggest me some good tutorial on this topic?? I am confused about _TCHAR etc stuff!!! | |
hello everyone, i am a rookie in C++ programming, can someone please clarify my one doubt regarding difference between handles and pointers ?? actually i am little confused about handles, can any one please clarify what exactly is a Handle and why is it used?? | |
Re: [QUOTE=tech291083;381291]Hi, If any body is interested in learning C++ on his own then here is a site which I have been using to a great effect and satisfaction. Although many might be aware of it. [URL]http://www.cplusplus.com/doc/tutorial/[/URL] I have bought some books on the language but none of the seem to … |
The End.