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
<!-- html code--> | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title> Syco Scientist Records</title> | |
<meta charset="UTF-8"/> | |
<link rel="stylesheet" href="css/anupamstyle.css" /> | |
</head> | |
<body> |
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
/* K &R's book, section 1.9. The program for printing the longest line, from a given set of lines, is given as*/ | |
#include <stdio.h> | |
#define MAXLINE 1000 /* maximum input line length */ | |
int getline(char line[], int maxline); | |
void copy(char to[], char from[]); | |
/* print the longest input line */ |