Category: A ll Codes

26
Feb
2015

11559 – Event Planning

By thinking 24 hr++ I have solved this problem.I got guidance from my friend M.H Riyad also..He…

17
Feb
2015

Uva 11498 – Division of Nlogonia

Solution actually simple…You have to think simple here is the cartesian co ordinate link check here then…

17
Feb
2015

Some ICPC related programming techniques in c

Sometimes i feel i have to write those in somewhere so i am writing those techniques here…

16
Feb
2015

uva 11172 – Relational Operator

#include<stdio.h> int main() { int i,t,a,b; scanf(“%d”,&t); for(i=0;i<t;i++){ scanf(“%d %d”,&a,&b); if(a<b) printf(“<\n”); else if(a>b) printf(“>\n”); else printf(“=\n”);…

14
Feb
2015

Some format specifiers in C

The % Format Specifiers The % specifiers that you can use in ANSI C are: Usual variable…

13
Feb
2015

Pointer

What is pointer? Pointer is actually a variable which points to another variable by address not value…