Friday, October 19, 2007

This Uncomman stuff is cool

i have to face with really unusual stuff with programming with our job interviews. Following shows some examples:

1. Writing hello world without semicolon in C:

#include

int main(){

if(printf("Hello World\n"){

}
}

2. Printing 1 to 100 without using if,for, while or any other loops:

class PrintingWithoutLoopsIf {
public static void main(String args[]){
int z=foo(1);
}
public static int foo(int x) {
System.out.println(x);
x++;
int z=0;
z=(x<101)? foo(x):0;
return 1;
}
}

Thursday, October 11, 2007

About Final Year project


We started our final year project implementation. We were able to get the locations point out in our
Google maps. It was surprising to us because when we started implementation without a kick it's very
lazy. Now we are developing very quickly and we are interested about it very much rather than earlier time. this is some example pick which we have already build.