Write a program for Implicit and Explicit data type conversion.
This post content:-
- Algorithm
- C code
- Output
- Pdf notes
Algorithm:-
Step 1:- start.
Step 2:- declare variables x.
Step 3:- print x as
(
printf("%c", x); /*Implicit casting from int to char %c*/
)
Step 4:- end.
Flowchart:-
Try it yourself:-
Comments
Post a Comment