Month: May 2017

08
May
2017

Operator Inequality

#include<stdio.h> int main() { int a,b,i; a=200; b=200; i=a!=b; printf(“%d\n”,i); return 0; }  

08
May
2017

Competitive Programming and Muscle Memory

https://www.raywenderlich.com/135789/how-to-be-a-better-developer-with-programming-challenges https://www.hackerearth.com/getstarted-competitive-programming/

07
May
2017

Typecasting Secret

code: #include<stdio.h> int main() { int a=5,b=2; float r; char ch=5; r=(float)a/b; printf(“%f”,r); return 0; } Typecasting…

07
May
2017

Hackerearth: Find Product

code: #include<stdio.h> #include<math.h> int main() { int n,A[100005],i; long long int answer=1; //it should not be int…

07
May
2017

Google Interview Diary

My discussion with Ashish Kedia about internship at Google, IIT Bombay and Competitive Programming.

07
May
2017

Become a Software Engineer in PHP platform

Mev-Rael 28 Oct 2016 · answer First, obligatory learn those topics very well: HTTP, cookies, sessions, caching,…