a simple code...see carefully...

include<stdio.h>
include<conio.h>
main()
{
int a,b;
for(a=0;a,=149;a++);
for(b=0;b=149;b++);
b=a+b;
printf("the sum of the number is%d ",b);
}


output--
300

No comments:

Post a Comment

Implemet Stack in python

  class Stack : def __init__ ( self , data ): self . stack = [] if ( data ): self . stack . append ( da...