This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Code Optimisation | |
| #include<stdio.h> | |
| #include<string.h> | |
| #define MAX_LINES 100 | |
| #define MAX_LEN 100 | |
| int main(){ | |
| FILE *fp1 , *fp2; | |
| char line [MAX_LEN]; |