Description:
The file addition.c is an incomplete program. It contains only the header file.
Issue:
Incomplete code issue.
Contains code that will not run independantly.
How to fix:
#include <stdio.h>
#include<conio.h>
void main
{
int a=2,b=5,c;
c=a+b;
printf("sum is: %d", c);
Description:
The file addition.c is an incomplete program. It contains only the header file.
Issue:
Incomplete code issue.
Contains code that will not run independantly.
How to fix:
#include <stdio.h>
#include<conio.h>
void main
{
int a=2,b=5,c;
c=a+b;
printf("sum is: %d", c);