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:-
C code:-
Output:-

Try it yourself:-




Comments

Popular posts from this blog

Develop and execute C Program to Add Two Distances given in kilometer-meter Using Structures.

Develop a c program to find the sum of all elements stored in a given array using a pointer.