/*A PROGRAM OF C TO PRINT THE ELEMENTS DIRECTLY IN PRINTF WITH DIFFRENT TYPES WITHOUT USING ANY PRIMARY DATA TYPE*/
#include<stdio.h>
int main()
{
printf("%s\n","anu");//THIS WILL PRINT anu
printf("%f %.3f %.2f %.1f %.5f\n",1.235,1.235,1.235,1.235,8);//%f will print 6 values after <.> decimal.... .3f will print 3 values after <.> , .2f will be able to print 2 values after this decimal..(after making round of the values).. %.1f will be able to print only 1 value after <.> & .5f will make able to float to print 5 values aftr <.>,.,,if
//if i had written int value instead of float like 8 is written ....then %.5f will print 0.00000
printf("characters are=%c \n %c \n %c\n",'A','b','C');//print the chatacters