C program to Display the Value of 2 Variables By G Krishna Chauhan

C program to Display the Value of 2 Variables   

#include<stdio.h>
#include<conio.h>

void main()
{   
int a=5,b=4;
printf("First Value is %d and Second Value is %d",a,b); 
getch();

No comments:

Post a Comment