Skip to main content

Posts

Showing posts with the label c

20 Essential Apps For Your Android Phone

The ever-growing Android Market is flooded with apps that never cease to push the boundaries for better user experience. These apps number by the hundreds of thousands, well past the halfway mark towards a million by now, but not all of them are crowd favorites. For every category there are hundreds of choices to pick. Well, I’ve done some filtering and have gathered a list of  20 must-have Android Apps  an Android user should get. I’ve broken it down to a few categories, namely security, backup, communication, browsers, tools, launcher and entertainment so you can just look at the categories you’d want recommendations for. If you have other Android apps you would like to recommend, you can share your opinion at the comments section. Without further ado, the 20 Android apps you simply must have on your Android device. Security AVG Antivirus AVG Antivirus is a free antivirus app for Android. It is free and gives you many features to secure your Android phone from...

C advanced interview questions and answers

   C advanced interview questions and answers  (1) What will be output if you will compile and execute the following c code? struct   marks {   int   p :3;   int   c :3;   int   m :2; }; void   main (){   struct   marks  s={2,-6,5};   printf( "%d %d %d" ,s. p ,s. c ,s. m );   } (a) 2 -6 5 (b) 2 -6 1 (c) 2 2 1 (d) Compiler error (e) None of these Answer:  (c) Explanation: Binary value of 2: 00000 010  (Select three two bit) Binary value of 6: 00000110 Binary value of -6: 11111001+1=11111 010 (Select last three bit) Binary value of 5: 000001 01  (Select last two bit) Complete memory representation: (2) What will be output if you will compile and execute the following c code? void   main (){    int  huge*p=( int  huge*)0XC0563331;    int  huge*q=( int  huge*)0xC2551341;   ...