Skip to content

Instantly share code, notes, and snippets.

@SCI-COPATH
Created November 1, 2019 14:19
Show Gist options
  • Save SCI-COPATH/c060e5c9cc9ad18b0d3c8e7fd8fd2644 to your computer and use it in GitHub Desktop.
Save SCI-COPATH/c060e5c9cc9ad18b0d3c8e7fd8fd2644 to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include <conio.h>
void main()
{
int num=10;
float NUM=25.5;
char number a='c';
clrscr();
printf("%d",num);
printf("%f",NUM);
printf("%c",number);
getch();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment