Subscribe to Feeds

Send Your Projects To georgepj@hotmail.com

We'll Publish It With Your Name :-)

Programs Can Also Be Downloaded From The Folders Below....[Or Scroll Down]

Verify different Datatypes

Click Here To Download C File Of This Program

 //Program to verify different datatypes  
//Downloaded from www.c4cprog.co.nr
#include<conio.h>
void main()
{
int a;
float f;
clrscr();
printf("Enter INT & FLOAT\n");
scanf("%i%f",&a,&f);
printf("\n \nDecimal = %d\nUnsigned decimal = %u\nHexadecimal Integer = %x",a,a,a);
printf("\nFloat = %f\nOctal = %o\nFloat = %e\nOctal = %i\nDecimal = %i\nHexadecimal = %i\n",f,a,f,a,a,a);
getch();
}

0 comments:

Post a Comment