WPM
100
CPM
100
Errors
0
Time
15Min
Accuracy
100%
Start C Programming code typing Practice. Printf and Scanf in C, Global Variable typing practice in C, basic datatypes and constants in C typing Practice, Some Basic Programs in C.Click on the area below to start typing.

S.No.Paragraph : Practice repeatedly whatever you would like most for full fifteen minutes Lessionsclick to Practice
1#include #include int main() { int a; char b; float c; double d; printf("Storage size for int data type:%d \n",sizeof(a)); printf("Storage size for char data type:%d \n",sizeof(b)); printf("Storage size for float data type:%d \n",sizeof(c)); printf("Storage size for double data type:%d\n",sizeof(d)); enum MONTH { Jan = 0, Feb, Mar }; enum MONTH month = Mar; if(month == 0) printf("Value of Jan"); else if(month == 1) printf("Month is Feb"); if(month == 2) }1.3 basic datatypes in c typing practice