0 votes
in Programming by (340 points)

1. What will be the output of the following Program?

#include<stdio.h>
int function();
main()
{
	int i;
	i = function();
	printf("%d", i);
	return 0;
}
function()
{
	int a;
	a = 250;
	return 0;
}


(Answer will be given Next Week)

Please log in or register to answer this question.

Welcome to MAKAUT Community, where you can ask questions and receive answers from other members of the community.
...