Month: May 2017

09
May
2017

Why you will switch from PHP to Java

http://forums.whirlpool.net.au/archive/1772689

09
May
2017

Don’t be developer without coding knowledge in DS and Algo

Dear friends, I have close to 9 years of experience in the IT industry. I have been…

09
May
2017

C if else techniques

code: #include<stdio.h> int main(){ if(!printf(“Hello”)){ printf(” world\n”); }else{ printf(” Hell!”); } return 0; }  

08
May
2017

Short Circuit Feature For Logical Operators

code: #include<stdio.h> int main() { int a=-1,b=10,c; c=++a && ++b; printf(“a=%d, b=%d, c=%d\n”,a,b,c); return 0; } Expected…

08
May
2017

How to find your passion

 

08
May
2017

Logical Not Operation

#include<stdio.h> int main(){ int a=100,b=-70,i; i=!(a>b);// when we use !a it is zero as any non zero…