- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 15
- Posts with Downvotes
- 8
- Downvoting Members
- 11
20 Posted Topics
Re: I would definitely recommend Avast. For me Avast anti virus software is best | |
Re: I must say, c++not enough to get into a job, but enough to do a job! Try to learn about databases or SQL or any designing language. | |
Re: To develop a smart phone app firstly you must know Java because in almost every phone application development code using basics of java. And android programming is also need. | |
Re: > Most programs designed for the 32-bit version of Windows will work on the 64-bit version of Windows. Notable exceptions are many antivirus programs.Device drivers designed for 32-bit versions of Windows won't work on computers running a 64-bit version of Windows. If you're trying to install a printer or other … | |
Re: The traditional way to solve this problem is reinstall Windows 7 or restore it to factory settings. As we all know, Windows computer has no password required to login default. But the disadvantage of these traditional ways is data loss probably.Here I introduce another effective way for you. It can … ![]() | |
Re: In programming, operator overloading—less commonly known as operator ad hoc polymorphism—is a specific case of polymorphism, where different operators have different implementations depending on their arguments. Operator overloading is generally defined by the language, the programmer, or both. | |
Re: What you want actually? You need to convey the assignment idea or Answer for the question?! | |
Re: You can do it like ordinary in C. Try this, fstream f("yourfile.dat",ios::in); f.open(); char a[20][20]; for(int i=1;i<=17;i++) for(int j=1;i<=2;j++) f>>a[i][j]; f.close(); | |
Re: Thank you so much, its really an informative one! Usually I am coberting the pdf into word file then editing the content. this is really helpful! | |
Re: Use these softwares to prevent such monitors Software that removes this ( free ) : - Malwarebytes AntiMalware - SUPERAntiSpyware - Spyware Terminator - Ad-Aware SE - Spybot Search & Destroy Paid & good solutions would be : - Spyware Doctor - Spyware Sweeper - CounterSpy | |
Re: Take the radius r Equation to find the area of the circle is (pi)*r*r | |
Re: Adobe photoshop is developed using C++ formerly in Pascal | |
Re: If your compiler support new version of c++ compiler c++11, you can use the code as follows: std::vector<int> v = {1, 2, 3, 4}; | |
Re: Range means the maximum and minimum value that can be stored inside the variable of a given type. For example if you have unsigned char and if we assume that the size of the datatype is 8 bits then you can store values ranging from 0 - 2^8-1 i.e. 0-255 … | |
Re: Yes the code is working. Thank you | |
Re: Functions allow to structure programs in segments of code to perform individual tasks. In C++, a function is a group of statements that is given a name, and which can be called from some point of the program. Where: - type is the type of the value returned by the … | |
Re: No its not a waste of time! there are many projects are doing in C++ | |
Re: A static variable is a single memory location associated with the class. A non-static variable (that is a member of a class) represents a different memory location for each instance of the class. Static variables can be initialized only once and assign to 0 when an object is created. |
The End.