//Error in this
//Find size of different data types
#include<stdio.h>
int main()
{
printf("Here is the size of int = %lu\n",sizeof(int));
printf("Here is the size of float = %lu\n",sizeof(float));
printf("Here is the size of char = %lu\n",sizeof(char));
printf("Here is the size of double = %lu\n",sizeof(double));
printf("Here is the size of long double = %lu",sizeof(long double));
}
To embed this project on your website, copy the following code and paste it into your website's HTML: