{
if(length($0)<40)
printf"%s",$0
else
{
x=$0
while(length(x)>40)
{
printf"%s\n",substr(x,1,40)
x=substr(x,41,length(x)-40)
}
printf"%s\n",x
}
}
Study it today is an absolutely FREE website which has been created to provide notes and study materials to the people who are enthusiastic to study different technical and non-technical subjects in a different way....
0 comments:
Post a Comment