Write a C program to create a file name DATA which will takes some integers from the terminal and read data from DATA file and will display odd numbers in ODD file and even numbers in EVEN file.
Answer: #include<stdio.h> #include<conio.h> void main() { FILE *f 1 ,*f 2 ,*f 3 ; int number,i,a; clrscr();