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)