Program to demonstrate the exact use of return 0
Sum of two numbers
/* program to show exact use of return 0 */ #include<stdio.h> #include<conio.h> int main() { clrscr(); int a=10; printf(" My name is deepak garg\n"); getch(); printf("\n the value of a is %d",a); getch(); return 0; }