Skip to content

Instantly share code, notes, and snippets.

View 6uclz1's full-sized avatar
🏠
Working from home

ぶち 6uclz1

🏠
Working from home
View GitHub Profile
#include <stdio.h>
#include <stdlib.h>
int count_vowel(char*);
int main()
{
char *str1, *str2;
str1 = "now is the time";
str2 = "My name is DENDAI Hanako";
#include <stdio.h>
#include <stdlib.h>
void encrypt(char*, int);
int main()
{
int key;
char message[20];
//mondai2
#include <stdio.h>
#include <string.h>
void reverse(char[]);
int main()
{
char name[20];
//mondai1
#include <stdio.h>
int ave(int[], int);
int main()
{
int num[5], i;
//mondai1
#include <stdio.h>
#include <string.h>
int main()
{
char first[20], second[20], name[40];
printf("? ");
//mondai2
#include <stdio.h>
int main()
{
int i, st_num = 5, ave_height = 0, ave_weight = 0;
int data[st_num][3];
for (int i = 0; i < st_num; ++i)
//mondai1
#include <stdio.h>
int main()
{
int i, score[5], max = 0, min = 0, sum = 0;
for (i = 0; i < 5; ++i){
printf("[%d] input >>> ", i);
<script src="https://raw.github.com/processing-js/processing-js/v1.4.8/processing.min.js"></script><script type="application/processing" data-processing-target="proce55ing-canvas-name" >
//Draw Code Here
</script><canvas id="proce55ing-canvas-name"/>