Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.
revAdmin (Created page with "<syntaxhighlight lang="C"> #define __STDC_WANT_LIB_EXT1__ 1 // Active C11 extended functions (this case is gets_s) #include<stdio.h> int slen(const char *); // I don't want to include whole string lib just for get size int main(void) { char s[500]; printf("%s","Enter a sentence: "); if(!gets_s(s,500)) { puts("Error!"); getchar(); return 0; } for(int i=0;i<slen(s);i++) if(s[i]!=32) putchar(s[i]); else putchar(10); putchar(10);...")May 13'24 at 20:58+596