Program to add, subtract, multiply and divide two numbers Write a program to add, subtract, multiply and divide two numbers using pointers and print the addresses of all the variables. #include <stdio.h&…
ALL_NUM A file named ALL_NUM contains a series of integer numbers.Code a program to read these numbers and then write all odd numbers to a file to be called …
Program to scan the date of today and print date of tomorrow. Define structure named as date with three structure elements day, month and year.Write a program to scan the date of today and print date of tomorrow…
Decending order program #include<stdio.h> #include<conio.h> main() { int i,j,n[5],t; clrscr(); for(i=0;i<=4;i++) { printf("ENTER …
Ascending order program #include <stdio.h> #include <conio.h> main() { int i,j,n[5],t; clrscr(); for(i=0;i<=4;i++) { printf("ENTE…