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> | |
#include <stdlib.h> | |
#include <time.h> | |
#define A 10 | |
#define B 30 | |
struct kolejka { | |
int *tab; | |
int dlugosc; |
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 <stdlib.h> | |
#include <stdio.h> | |
#include <time.h> | |
#define ACHUNK_LEN 5 | |
#define RCHUNK_LEN 4 | |
int len = 0; | |
int *pini(int *len, int firstvalue); |
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
#define _CRT_SECURE_NO_WARNINGS | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#define DLUGOSC_NAZWY 30 //długość nazwy | |
#define L_DZIALOW 5 //liczba działów muzeum | |
enum DZIAL { ceramika, obrazy, rzezba, numizmatyka, magazyn }; //nazwy działów |
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
#define _CRT_SECURE_NO_WARNINGS | |
#include <stdio.h> | |
#include <conio.h> | |
#include <stdlib.h> | |
#define LICZBA_PUSTA {NULL,0} | |
#define ZERO_ASCII 48 | |
#define B 8 //Podstawa systemu liczbowego | |
//Struktura przechowująca bardzo dużą liczbę w postaci kolejnych cyfr, oraz ilość tych cyfr. |
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> | |
#include <stdlib.h> | |
#include <errno.h> | |
#include <unistd.h> | |
#include <signal.h> | |
#include <sys/wait.h> | |
#define DELTA_MIN -10 | |
#define DELTA_MAX 15 | |
#define SUBPROCESS_COUNT 3 |
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
using System; | |
namespace ASD | |
{ | |
abstract class ChangeMakingTestCase : TestCase | |
{ | |
protected int amount; |
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
#define _GNU_SOURCE | |
#include <stdlib.h> | |
#include <stdio.h> | |
#include <sys/wait.h> | |
#include <signal.h> | |
#include <unistd.h> | |
#include <errno.h> | |
#include <limits.h> | |
#include <math.h> | |
#include <time.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
using System; | |
using System.Diagnostics; | |
using ASD.Graphs; | |
namespace ASD | |
{ | |
class FindCycleTestCase : TestCase | |
{ |
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
// lab1-cs.cpp : Defines the entry point for the application. | |
// | |
#include "stdafx.h" | |
#include "lab1-cs.h" | |
#define MAX_LOADSTRING 100 | |
// Global Variables: | |
HINSTANCE hInst; // current instance |
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
// lab1-proba.cpp : Defines the entry point for the application. | |
// | |
#include "stdafx.h" | |
#include "lab1-proba.h" | |
#define MAX_LOADSTRING 100 | |
// Global Variables: | |
HINSTANCE hInst; // current instance |
OlderNewer