/ Published in: C
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
/* output in lowercase */ #include <stdio.h> int lower(int upper); int main(int argc, const char *argv[]){ int c; while(c != EOF){ if(c<65 || c>90){ } else{ } } } int lower(int upper){ upper=upper+32; return(upper); }