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 int main() { float flt = 10.234; int no = 150; double dbl = 20.123456; printf("Character is %c \n", ch); printf("Float value is %f \n", flt); printf("Integer value is %d\n" , no); char ch; char str[100]; printf("Enter any character \n"); scanf("%c", &ch); printf("Entered character is %c \n", ch); scanf("%s", &str); printf("Entered string is %s \n", str); }1.2 c printf and scanf typing practice