CAUTION : BEFORE YOU TRY TO ROOT YOUR DEVICE, PLEASE TAKE A BACKUP OF YOUR PRECIOUS DATA SUCH MESSAGES, IMAGES, VIDEOS AND INSTALL THE NECESSARY DRIVERS FOR YOUR PHONE ON YOUR COMPUTER. ROOTING YOUR PHONE WILL VOID YOUR WARRANTY FROM BOTH THE CARRIER AND ALSO THE MANUFACTURER. DO NOT ATTEMPT TO ROOT YOUR PHONE, UNLESS YOU
Browsing category Featured
Well if you are like me, you would have a tough time with the Terminal sometimes. Today, while I was working on my live server, I accidentally ran the following command while I was trying to fix the forbidden access to a file while access from the web browser : sudo chown -R www-data:www-data /
If you’re like me, then you must be playing around with the just released Windows 8 Consumer Preview. Experiencing how awesome as it is, some of you might be noticing a decrease in your battery life or very poor graphics performance. This can probably be because of the switchable graphics you have in your laptop
Update for Windows 8/10 users : The download which I’ve given doesn’t seem to work on a few games that are running in Windows 8. If you having any issues with it, download the latest package from here named ‘x360ce_lib64_r848_VS2010.zip’ [Depending on the 32/64-bit system you have installed] and then download the ‘x360ce.App-2.1.2.191.zip’ and replace the
1. What is the correct output of the following program? #include<stdio.h> void main() { enum a{yes,no,not_both}; enum a ques1,ques2,ques3; ques1=no; ques2=yes; ques3=not_both; printf(“%d %d %d”,ques1,ques2,ques3); } a) 2 1 3 b) 1 0 2 c) 1 2 3 d) 0 2 1 2. what will be the output of the following code? #include<stdio.h> void main()