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
| /* ________Variables________ */ | |
| * { | |
| /* ________Window________ */ | |
| window-width: 800px; | |
| window-height: 550px; | |
| window-border: 1.75px; | |
| window-border-color: #4A4A4C; | |
| window-border-radius: 12px; | |
| window-bg-color: rgba(26, 27, 38, 0.65); |
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
| #include <stdio.h> | |
| #include <string.h> | |
| int main(){ | |
| // Get a sentence of a maximum length of 100 characters from the user | |
| char sentence[100]; | |
| printf("Enter your sentence: "); | |
| gets(sentence); | |
| // The table to hold the words (maximum 100 words) |