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
| /* | |
| Written by: Stewart Mukonzi http://stewartmukonzi.blogspot.com | |
| Description: Js code to generate Google Drive direct link | |
| Date : 22/05/20 | |
| */ |
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
| /* | |
| * Written by Stewart Mukonzi | |
| * date: 21/04/20 | |
| * authors's website: http://stewartmukonzi.blogspot.com | |
| */ | |
| #include<stdio.h> | |
| int main() |
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
| /****************************************************************************** | |
| Author: Stewart Mukonzi | |
| Written: 11/08/19 | |
| Description: A C Program to check if a string is a palindrome | |
| *******************************************************************************/ | |
| #include <stdio.h> | |
| #include <string.h> |
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
| /****************************************************************************** | |
| Author: Stewart Mukonzi | |
| Written: 07/11/19 | |
| Description: C Program to generate six random numbers. | |
| *******************************************************************************/ | |
| #include <stdio.h> | |
| int rand(); | |
| int i=0; |
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
| /****************************************************************************** | |
| Author: Stewart Mukonzi | |
| Written: 06/11/19 | |
| Description: A simple program to count vowels and consonants in a file. | |
| It needs to be refined take into consideration capital letters, null spaces | |
| and other characters. | |
| *******************************************************************************/ |
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
| /****************************************************************************** | |
| Author : Stewart Mukonzi | |
| Written : 06/11/19 | |
| Description: C Program to calculate water bill | |
| *******************************************************************************/ | |
| #include <stdio.h> | |
| #define min_pay 5.00 |
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
| /****************************************************************************** | |
| Author: Stewart Mukonzi | |
| Written: 02/11/19 | |
| Descrpition: C program to show how continue and break statements can be used | |
| *******************************************************************************/ | |
| #include <stdio.h> | |
| #define PI 3.14 | |
| int x=7; |
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
| /* | |
| * Author: Stewart Mukonzi | |
| * Written : 23/10/19 | |
| * Description: C program to show file manipulation | |
| */ | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
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
| /* | |
| Author: Stewart Mukonzi | |
| Written: 18/10/19 | |
| Description: A C Program to show the Egpyptian Binary | |
| */ | |
| #include <stdio.h> | |
| long a,b, sum=0; |
NewerOlder