-
First, visit any repository on GitHub and click your way through to the issues page.
-
Create a new issue by clicking the button New Issue. You'll now see both a title and a description field.
-
Drag-and-drop an image on to the description field. This will start the uploading process.
-
Copy the URL and use it in README, issues or pull requests however you like.
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> | |
/* | |
Author:nacer salah eddine. | |
Description:Calculate the occurrences of a character in C lang. | |
Compile: | |
gcc occurrences.c -std=c99 -Wall -o occurrences | |
*/ | |
size_t occurrences_of_char(const char s,const char* str){ | |
/* |
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> | |
/* | |
Author:nacer salah eddine. | |
Description:Calculate the length of a string in C lang. | |
Compile: | |
gcc strlen.c -std=c99 -Wall -o strlength | |
*/ | |
size_t size_of_string(const char* str){ | |
/* | |
Put the @(address) of pointer str into the pointer p |