Relative Content

Tag Archive for c++codeblocks

Why does codeblocks memory dump window not show the error?

#include <stdio.h> #include <stdlib.h> #include <string.h> #include <ctype.h> struct train { int id; int hours; int minutes; char destination[21]; }; // сравнивать поезда по каждому из параметров по возрастанию // ввод: 2 указателя на 2 поезда // возврат: больше 0, если поезд дальше в списке, меньше 0, если наоборот int cmpTrains(void const *, void const […]