Vision and dreams are the blueprints of soul and achievements.
-Mohammed Ahmed F

Program to understand the Data types

#include<stdio.h>

int main()
{

int    sum;

float money;
char  letter;
double pi;

sum = 10;   /* assign integer value*/
money = 2.21; /* assign float value*/
letter = 'A'; /* assign character value */
pi = 2.01E6;  /* assign a double value */

printf("value of sum = %d\n", sum );
printf("value of money = %f\n", money );
printf("value of letter = %c\n", letter );
printf("value of pi = %e\n", pi );


getchar();

return (0);
}

Share this

Related Posts

Dear User,

Thank you for your comment. Hope you like this blog. Kindly share us on Social Media so others can be updated.

-Chief Administrative Officer.

Note: only a member of this blog may post a comment.