Category: Language

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; }  

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

Become a Software Engineer in PHP platform

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

06
May
2017

Advice For PHP Developer

PHP Development is quite easy and fun to work at. Here are a few tips that should…

06
May
2017

Design Patterns in PHP

https://www.codecourse.com/lessons?subject=design-patterns

03
May
2017

Pointer Clear

code: #include<stdio.h> int main() { int* pc; int c; c=22; printf(“____\n”); printf(“Address of c:%u\n”,&c); printf(“Value of C:%d\n”,c);…