Lavina Lalchandani's Profile
Lavina Lalchandani's Facebook profile Follow Lavina on Twitter

Technolgy Category

Debugging !

In: Technolgy

Hi all.. I received a forward on my email and thought if sharing it through my blog.
TO ALL DEVELOPERS: PLEASE REMOVE THIS BUG FROM THE CODE:
##########################################################
#include
#define LAST 10
int main()
{
int i, sum = 0;

for ( i = 1; i < = LAST; i++ )
{
sum += i;
}
/*-for-*/
printf(”sum = %d\n”, sum);
return 0;
}
##########################################################
AND THE DEVELOPER FIXES IT THIS WAY
..
..
..
..
..
..
..
..

..
..
..
##########################################################
#include [...]

Beginning Symfony

In: Technolgy

Well guys.. I was thinking of starting a blog for a long time.. And finally.. its here..
I thought what should my first post relate to.
Cuurently I am interning with a Company in Kanpur and learning new technologies.
One of the technology is Symfony..
Symfony is a well designed framework for PHP. There are many frameworks that exists [...]