C Language
#include<stdio.h> #include<conio.h> void main() { int a,b; clrscr(); a=4; b=11; printf("a=%d \t b=%d",a,b); getch(); } /*OUTPUT*/ a=4 b=11