Telegram RegisterThe public register of Telegram
Telegram profile photo for C | Inside Dev

Channel

C | Inside Dev

@code_with_c

On this record: Growth · Engagement · What this channel posts · Posts · Citations · Cite this entry

3subscribers

+0 since we began measuring on 12 August 2026

Risers and fallers across the register · movement among entries of Under 1,000.

Register entry

Telegram ID-1002332589110
TypeChannel
Username@code_with_c
DescriptionНаши проекты: https://t.me/cpp_tips https://t.me/ProJavaTips https://t.me/CSharpDevTips https://t.me/python_everyday https://t.me/code_with_c https://t.me/BestChatGpt_o1_bot
CreatedBetween 1 September 2024 and 31 March 2025 — estimated from Telegram’s id allocation, not measured. How this range is calculated.
First recorded13 August 2026
Last confirmed live2 September 2026
Measurements held2
On Telegramt.me/code_with_c

Growth

312 Aug 2026, 22:49 — 3 subscribers13 Aug 2026, 10:48 — 3 subscribers12 Aug 2026, 22:4913 Aug 2026, 10:48
2 measurements taken within a single day. Dots are measurements; the straight line between them is drawn to join them, not to claim we know the path taken in between — snapshots are recorded only when a count changes, so gaps mean “no change observed”, never “interpolated”. The vertical axis spans 2–4 and does not start at zero.
Measurement log — every subscribers count we have recorded
Measured (UTC)SubscribersChange
13 Aug 2026, 10:483no change
12 Aug 2026, 22:493first reading

Engagement

20 posts held, back to 19 June 2025the reader has not yet reached the start of this channel’s public history, so older posts may sit further back, unread. Read across 1 page of Telegram’s post history, 20 posts per page.

Nothing published in the last 30 days. ERR and ER are rolling 30-day measures, so there is nothing to compute — we hold 20 posts for this entry, the most recent from 23 June 2025. An engagement rate over an empty window would be a number about nothing.

What this channel posts

Photos
697
Links
588

Lifetime counters from Telegram’s own channel header, read 13 August 2026 — not the date at the top of this page, which is when the subscriber count was last read. Below Telegram’s rounding threshold, so these counts are exact.

Recent posts

23 Jun 2025, 13:52 UTC7 viewsread 13 August 2026
Photo

В C мы можем подключать библиотеки для расширения функциональности. Например, используем #include <stdio.h> для работы с вводом-выводом. Сторонние библиотеки подключаем через #include "имя_библиотеки.h". Для компиляции с библиотеками используем флаг -l. Пример: gcc main.c -o main -lm Скомпилируем main.c, подключая математическую библиотеку. Важно: библиотеки могут требовать наличие заголовочных файлов и самих би

23 Jun 2025, 07:54 UTC4 viewsread 13 August 2026
Photo

Асинхронное программирование в C позволяет реализовать одновременное выполнение задач, не блокируя основной поток выполнения. Это достигается с помощью функций, таких как fork для создания процессов или pthread_create для потоков. Пример с использованием потоков: #include <pthread.h> #include <stdio.h> void* myFunction(void* arg) { printf("Hello from thread %d\n", *(int*)arg); return NULL; } int main() {

23 Jun 2025, 04:14 UTC3 viewsread 13 August 2026
Photo

💻 Мы сделали ChatGPT прямо в Telegram! Теперь не нужно искать сторонние сайты — просто откройте нашего бота: @ChatGPT. 🤖 Что умеет бот? Отвечает на вопросы и не только Помогает с кодом и решениями задач Пишет тексты, объясняет сложное простыми словами Бесплатно. Без СМС и регистрации. Просто пользуйтесь.

23 Jun 2025, 01:57 UTC3 viewsread 13 August 2026
Photo

Декоратор — паттерн, позволяющий добавлять новое поведение объектам динамически. В C можно реализовать его через структуры и функции. Создадим структуру для базового объекта: typedef struct { void (*operation)(void); } Component; void base_operation() { printf("Базовая операция\n"); } Component base = {base_operation}; Теперь добавим декоратор: typedef struct { Component *component; } Decorator; v

22 Jun 2025, 19:58 UTC2 viewsread 13 August 2026
Photo

Условные операторы и циклы в C позволяют управлять потоком выполнения программы. Используя конструкцию if, можем проверять условия и выполнять разные блоки кода. Например: int x = 10; if (x > 5) { printf("x больше 5\n"); } else { printf("x меньше или равно 5\n"); } Для циклов используется for, while или do while. Например, с for можем перебрать массив: int arr[] = {1, 2, 3, 4, 5}; for (int i = 0; i < 5; i

22 Jun 2025, 14:01 UTC4 viewsread 13 August 2026
Photo

При работе с количественными методами в C важно использовать библиотеки для математических операций. Например, библиотека <math.h> предоставляет множество функций для вычислений. #include <stdio.h> #include <math.h> int main() { double x = 0.5; double result = sin(x); // Вычисляем синус printf("Синус %.2f равен %.2f\n", x, result); return 0; } Не забываем о точности данных. Для работы с вещественн

22 Jun 2025, 08:04 UTC2 viewsread 13 August 2026
Photo

Указатели могут указывать на функции, что полезно для создания callback-функций. Мы создадим простую функцию, потом указатель на неё и вызовем через этот указатель. #include <stdio.h> // Функция, которую будем указывать void greet() { printf("Hello, World!\n"); } int main() { // Указатель на функцию void (*func_ptr)() = greet; // Вызов функции через указатель func_ptr(); return 0; } При

22 Jun 2025, 02:07 UTC1 viewsread 13 August 2026
Photo

Алгоритмы сжатия данных могут значительно уменьшить размер файлов и ускорить передачу информации. Рассмотрим алгоритм DEFLATE, который сочетает в себе LZ77 и кодирование Хафмана. Вот пример использования DEFLATE на C с библиотекой zlib: #include <stdio.h> #include <zlib.h> void compressData(const unsigned char *data, size_t dataSize) { uLongf compressedSize = compressBound(dataSize); unsigned char *compres

21 Jun 2025, 14:12 UTC1 viewsread 13 August 2026
Photo

Для оптимизации многозадачности в C часто используем потоки. С помощью библиотеки pthread создаём несколько потоков, которые выполняют задачи параллельно. Пример: #include <pthread.h> #include <stdio.h> void* task(void* arg) { int num = *(int*)arg; // Выполняем задачу printf("Поток %d запущен\n", num); return NULL; } int main() { pthread_t threads[5]; int args[5]; for (int i = 0; i < 5

Showing the 12 most recent of 20 posts we hold for @code_with_c. View and reaction counts are the latest single reading for each post, not a live figure, and a recent post is still accumulating both. A view count marked was rounded by Telegram before we ever saw it — t.me prints views in full below 1,000 and to three significant figures above, so ≈1,200,000 means somewhere between 1,150,000 and 1,249,999. Unmarked counts are exact. Text is reproduced from the public post preview and truncated for length.

Mentions

Names

Channels on the register whose handles appear in this channel's posts.

A mention is a weaker signal than a forward and is counted separately for that reason — naming a channel is not republishing it, and a handle in a post body is easy to place deliberately. The post counts beside each row below are distinct posts in which the handle appeared, from posts we have read on both sides — the “Named by N registered channels” figure above is a different count, of distinct NAMING CHANNELS rather than posts, and is not the sum of the rows under it.

Cite this entry

A live page changes as we take new readings, so a citation should name the measurement it is based on, not just the URL. The line below cites the subscriber count as measured 13 August 2026 — this entry's latest reading, not the date you are reading this.

“C | Inside Dev” (@code_with_c), 3 subscribers as measured 13 August 2026. Telegram Register, tgregister.com/channel/code_with_c.

Full measurement history, CC BY 4.0. Every reading this register holds for this entry, not just the latest one, as a dated, downloadable record: CSV · JSON. Free to use with attribution to tgregister.com. Each file carries its own generation timestamp, which is the figure to cite for exactly when the data was retrieved.