Find sum of two numbers
int main()
{
int i;
printf("Enter 2 numbers\n");
/*
Write here few lines of code so that user gives 2 numbers as
input(on console) and display the addition of those 2 numbers.. and
the condition is no more variable(s) except for 'i' declared in first line
should be used throughout the program.
*/
return 0;
}
Regards,
Uday