[ create a new paste ] login | about

Link: http://codepad.org/lLsxiPhd    [ raw code | output | fork ]

C, pasted on Feb 14:
#include <stdio.h>
#include <stdlib.h>

int  main()
{
char a=5;
char b='*';
char c=9;
char d=0;

int i=0;
int j=0;
for(i=0; i<10000000; i++)
{
    for(j=0; j<10000000; j++)
    {
        if(a==5 && b=='*' && c==9)
        {
            d=45;
        }
    }
}
printf("%d\n", d);
  return 0;
}


Output:
1
45


Create a new paste based on this one


Comments: