day 2 ( C PROGRAMMING )
Output #include <stdio.h> int main () { int age = 22 ; printf ( " age is %d \n " ,age); char star = '*' ; printf ( "star look like this %c \n " ,star); float pi = 3.14 ; printf ( "value of pi %f \n " ,pi); return 0 ; }
Comments
Post a Comment