Month: June 2015

23
Jun
2015

Kaspersky 2015 and windows 7 Homegroup problem

KIS: http://support.kaspersky.com/10309#block0 See this link Follow the steps and make your connected network from public to trusted…

18
Jun
2015

Fixing Master Boot Recrord(MBR) issue with BIOS and Windows 7

Insert Windows 7 DVD in the DVD – ROM then Keep Nexting and Repair Windows option will…

18
Jun
2015

হার্ডডিস্ক পার্টিশান

নতুন হার্ড ডিস্ক টা অনেক দিন পর পারটিশান করতে বসলাম …এতদিন যে ড্রাইভটাতে উবুন্তু দিয়ে চালাচ্ছিলাম সেটায়…

15
Jun
2015

C++ Strings

Actually C++ strings are two types 1. Traditional C style character string 2. String class type Introduces…

11
Jun
2015

C++ Pointer

I tried to clear here my logic for pointer basic #include<iostream> using namespace std; int main(){ int…

08
Jun
2015

C++ Array

declare arrays: arraytype arrayName[arraySize]; //basic syntax example: int zakiLive[10]; Initialize arrays: int zakiLive[5]={4,5,6,8}; zakiLive[3]=8 It means value…