3.Write a programme using float #include<stdio.h> main() { float b; b=10.25; printf("%f",b); getch(); }
4. Write a programme using char(character) #include<stdio.h> main() { char a='K'; printf("%c",a); getch(); }
PREVIOUS NEXT