[ create a new paste ] login | about

3107141220

Name: thanhnguyen
Email:
Site/Blog:
Location: russia
Default language: C++
Favorite languages: C++
About:

Saved pastes by 3107141220:

C, pasted on Jul 21:
1
2
testcasethunghiem@qwb1.onmicrosoft.com
Hanoi1234@
view (2 lines, 3 lines of output)
C++, pasted on Apr 2:
1
2
3
4
5
//source.cpp
#include "Header1.h"
#include "stdlib.h"
#include <iostream>
#include "ctime"
...
view (175 lines, 4 lines of output, 1 comment)
C++, pasted on Mar 14:
1
2
3
//Fraction.cpp

#include "Fraction.h"
...
view (230 lines, 1 comment)
C++, pasted on Mar 14:
1
2
3
4
5
#include<iostream>

typedef struct tree_node {
	int value;
	tree_node* left;
...
view (204 lines, 2 lines of output, 1 comment)
C, pasted on Dec 23:
1
2
3
4
5
#include<stdio.h>
#include<stdlib.h>

typedef struct listItem
{
...
view (207 lines, 27 lines of output)
C, pasted on Dec 23:
1
2
3
4
5
#include<stdio.h>
#include<stdlib.h>

typedef struct queue
{
...
view (44 lines, 2 lines of output)
C, pasted on Dec 23:
1
2
3
4
5
#include<stdio.h>
#include<stdlib.h>
#include<string>

#define bool int
...
view (164 lines, 5 lines of output)
C, pasted on Dec 1:
1
2
3
4
5
#include<stdio.h>
#include<stdlib.h>
#include<time.h>
#include<string.h>
#define M 6 //столбцы
...
view (290 lines, 53 lines of output)
C, pasted on Dec 1:
1
2
3
4
5
#include<stdio.h>
#include<stdlib.h>
#include<time.h>
#include<string.h>
#define M 6 //столбцы
...
view (290 lines, 53 lines of output)
C, pasted on Nov 18:
1
2
3
4
5
#include<stdio.h>
#include<string.h>
void swap(char* a, char* b)
{
    char* temp = *a;
...
view (43 lines, 6 lines of output)
C, pasted on Nov 18:
1
2
3
4
5
#include<stdio.h>
#include<string.h>
int strlendem(char* a)
{
    int i = 0;
...
view (27 lines, 2 lines of output)
C, pasted on Nov 18:
1
2
3
4
5
#include<stdio.h>
#include<string.h>
int strlendem(char* a)
{
    int i = 0;
...
view (43 lines, 4 lines of output)
C, pasted on Nov 16:
1
2
3
4
5
#include<stdio.h>
#include<string.h>
char* remove_char(char* str, int pos);
char* removechar(char* str, char c);
int demchuoi(char* a)
...
view (57 lines, 8 lines of output)
C, pasted on Nov 16:
1
2
3
4
5
#include<stdio.h>
#include<string.h>
void swap(char* a, char* b)
{
    char* temp = *a;
...
view (48 lines, 6 lines of output)
C, pasted on Oct 31:
1
2
3
4
5
#include <stdio.h>
#include<string.h>
void print_words(char* str);
char* reverse_words(char* str);
char* reverse_sub(char* str, char* sub);
...
view (223 lines, 5 lines of output)
C, pasted on Oct 31:
1
2
3
4
#include <stdio.h>
#include<string.h>
int str_length(char* str);
int numcount(char* str);
...
view (309 lines, 33 lines of output)