Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.40K
~167 People Reached
Favorite Forums
Favorite Tags
c x 1
Member Avatar for omar.ossama.11

` #include<stdio.h> #define MAXLINE 1000 int getline(char line[],int maxline); void copy(char to[],char from[]); /*print longest input line*/ main() { int len; /*current line length*/ int max; /*maximum length seen so far*/ char line[MAXLINE]; /*current input line*/ char longest[MAXLINE]; /*longest line saved here*/ max=0; while(len=getline(line,MAXLINE)>0) if(len>max) { max=len; copy(longest,line); } if …

Member Avatar for fahadkhan6302
0
167