[ create a new paste ] login | about

Observer

Name: Ivan
Email:
Site/Blog:
Location:
Default language: C
Favorite languages:
About:

Saved pastes by Observer:

C, pasted on Mar 23:
1
2
3
4
#include <stdio.h>
#include <locale.h>

#define N 10
...
view (33 lines, 13 lines of output)
C, pasted on Mar 23:
1
2
3
4
5
#include <stdio.h>
#include <locale.h>

int main()
{
...
view (58 lines, 13 lines of output)
C, pasted on Mar 22:
1
2
3
4
5
/*подсчет строк, символов, слов*/

#include <stdio.h>

int main()
...
view (30 lines, 1 line of output)
C, pasted on Mar 19:
1
2
3
4
#include <stdio.h>
#include <locale.h>

#define MAX 100 // максимальное число чисел Фибоначчи
...
view (56 lines, 1 line of output)
C, pasted on Mar 12:
1
2
3
4
5
#include <stdio.h>

// определяем високосный год или нет
int main ()
{
...
view (19 lines, 1 line of output)
C, pasted on Mar 8:
1
2
3
4
5
#include <stdio.h>
#include <locale.h>

/* замена нескольких пробелов одним */
int main ()
...
view (29 lines, 1 line of output)
C, pasted on Mar 8:
1
2
3
4
5
#include <stdio.h>
#include <locale.h>

/* замена нескольких пробелов одним */
int main ()
...
view (37 lines, 1 line of output)
C, pasted on Mar 6:
1
2
3
4
5
#include <stdio.h>

void func(int, int, int);

// демонстрация функции, которая принимает три числа и выводит их на экран
...
view (26 lines, 3 lines of output)
C, pasted on Mar 6:
1
2
3
4
5
#include <stdio.h>

void func(void);

// демонстрация функции, которая ничего не принимает и ничего не возвращает
...
view (19 lines, 2 lines of output)
C, pasted on Mar 6:
1
2
3
4
5
#include <stdio.h>

// когда уместнее while, а когда for
int main ()
{
...
view (22 lines)
C, pasted on Mar 6:
1
2
3
4
5
#include <stdio.h>

// когда уместнее while, а когда for
int main ()
{
...
view (19 lines)
C, pasted on Mar 5:
1
2
3
4
5
#include <stdio.h>

int main ()
{
    int a[10], i;
...
view (18 lines, 10 lines of output)
C, pasted on Mar 5:
1
2
3
4
5
#include <stdio.h>

int main ()
{
    int a[10], i;
...
view (17 lines, 10 lines of output)
C, pasted on Mar 5:
1
2
3
4
5
#include <stdio.h>

int main ()
{
    printf("Hello, World!\n");
...
view (8 lines)