@pensu-8tNeGU
•
Oct 25, 2024
Oct 25, 2024
1.6K
A simple C problem.....
Hey ppl,
I have a problem related to a C program.
#include<stdio.h>
#include<conio.h>
int sum(int a,int b)
{
int c=a+b;
}
int main()
{
int a=5,b=2;
printf("%d",sum(a,b));
getch();
return 0;...