Programming In C Practical 5
Programming In C Practical 5 Question 1 Write a C program to read integer, character, float, double values from the user and display it. Mention different format specifiers used in program in comment. values.cpp C #include<stdio.h> #include<conio.h> void main() { clrscr(); int i; char ch; float f; double d; printf("nEnter an integer: "); scanf("%d",&i); printf("nEnter […]
Programming In C Practical 5 Read More »