Wear the standard library.
#include <stdio.h> — dark mode and light mode.
#C #developerlife
The C++ standard library, a construct so far gone that you have to #include ~9000 lines of extra code for std::move, which should have been a built-in.
(Yes, I know you can just static_cast to && in most cases, but it's not exactly readable...)
ゴミは速やかにゴミ箱へ
Світе, швидко викидай своє сміття у смітник.
Інакше настане червона зима.
www.deviantart.com/poison-raika...
<>
#trash #immediately #priority #essential #include #people #specific #example #certain #Hanafuda #President #more #Emperor #mercy #currently #impose #death #sentence #Ukraine
ゴミは速やかにゴミ箱へ
Світе, швидко викидай своє сміття у смітник.
Інакше настане червона зима.
www.pixiv.net/novel/show.p...
<>
#trash #immediately #priority #essential #include #people #specific #example #certain #Hanafuda #President #more #Emperor #mercy #currently #impose #death #sentence #Ukraine
ゴミは速やかにゴミ箱へ
Світе, швидко викидай своє сміття у смітник.
Інакше настане червона зима.
note.com/poison_raika...
<>
#trash #immediately #priority #essential #include #people #specific #example #certain #Hanafuda #President #more #Emperor #mercy #currently #impose #death #sentence #Ukraine #world
#include <stdio.h> is so ubiquitous it stops registering. But it's worth understanding what it actually provides — and why it's usually the first line a C program ever has.
#C #cprogramming #programming
thanks but no not them, my thing only doesn't pass on the CRAN machines (happily though I think it's a single missing #include from vendored code, 99% confident). I'm waiting for remaining builds to finish before confirming "in production" 8) CRAN valgrind also found a tiny non-allocation edge case
More like #include <string.h>?
FWIW my grandmother taught me crochet (and we made a throw/blanket together ) but I doubt I could remember much of it ☹️
The .#include and .#includeIfPresent directives in case configuration files can optionally take arguments to pass variables into the included files in #OpenFOAM-dev github.com/OpenFOAM/OpenFOAM...
check out my facile tune
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <stdint.h>
#include <arpa/inet.h>
#include <alsa/asoundlib.h>
int main() {
snd_rawmidi_t* cb[2] […]
# A depressed coders first program:
#include <stdio.h>
int main()
{
printf("Good Bye Cruel World");
!return;
}
Solved Computer Systems Organization CSCI 463-1 Spring 2025 Homework #8
I. Endianness Consider the following program: #include #include #include using namespace std; int main() { int i = 0x87654321; char u[5] = "unix"; ofstream myfile; myfile.open("fileout.txt",…
Per si no queda clar:
#include <iostream>
int main() {
for (int item = 0; item < 2000; ++item) {
std::cout << "FINS ALS COLLONS, N'ESTIC!" << std::endl;
}
return 0;
}
I love posting C++ code on the fediverse #include
#include <iostream>
using namespace std;
int main() {
// this statement prints "hello world"
cout << "hello world";
return 0;
}
Ik heb onlangs linux mint op een oude macbook air geïnstalleerd, maar nu is er een kernel update en krijg ik deze foutmelding bij het installeren. Zijn er meer mensen die dit hebben gezien? En heb je een oplossing gevonden?
| ^~~~~~~~~~~~
```
warning: the compiler differs from the one used to […]
Blimey! I added #include <windows.h> to an old project to implement one thing and to my amazement it *didn't* instantly generate 999 errors this time! :D
#include <linux/uapi/*.> in Wayland protocol core. Yeah…
Goo:
#CBP #undercounts #migrant #deaths, #fails to #include #remains #found by #local #sheriffs or #NGOs.
8 #nationwide deaths #represent high-profile #enforcement #cases.
The #actual #number of #migrants #perished in 2026 will #take #months to #document in #official CBP #mortality #reports.
#vss365
(속닥속닥 혹시 #include <algorithm>에 1짤 저격 함수가 있다는 걸 알고 계신가요...)
why can't I access any of these functions but `#include <bit>` doesn't error
https://en.cppreference.com/w/cpp/header/bit.html
respect for design. Like I know front-end developmwnt gets alot of flac for not being as hard but having to explain everything and make wrappers around the back end, but it was so cool making a project and being able to use the api. So I just do
" #include "SGE.h" " and have access to the public..
#include <stdio.h> int add(int a, int b) { return a + b; } int subtract(int a, int b) { return a - b; } void calc(int a, int b, int (*op)(int, int)) { printf("%d\n", op(a, b)); } int main() { calc(10, 5, add); calc(10, 5, subtract); return 0; }
Include both parameters (w, b), and the cost becomes a surface.
A bowl.
Learning is no longer abstract math —
it’s moving downhill toward the lowest point.
#moving #include #ai
#include <stdio.h>
int main()
{
printf("\nhello world");
return 0;
}
MAME 0.285 launcher, running on Haiku R1B5, viewed via a VNC connection on a Linux box. In the background is a tmux session, also running on the Haiku box, viewed via SSH on the Linux box.
#MAME 0.285 compiles on #HaikuOS after adding a small upstream patch (a missing #include). It's available now on HaikuPorts.
If you're struggling to compile the latest version of MAME (I bet #FreeBSD and #NetBSD probably have the same issue), give this a go: github.com/mamedev/mame...
“Am I covered during the holidays?”
If your policy is active, coverage usually continues 24/7—including holidays.
💬 Does knowing you’re protected during the holidays bring relief? #policy #holiday #protected #bring #coverage #cover #holidays #beactive #include #bestvacation #continue #protect
TIL gcc does not care about newlines when parsing statements, so
```c
// main.c
#include <stdio.h>
int test =
#include "test.c"
int main() {
printf("%d", test);
}
// test.c
0;
```
just works.
@hp to demonstrate a point, here's me using it to cross-compile a Windows application:
CMakeLists.txt:
project(app C)
add_executable(app main.c)
main.c:
#include <stdio.h>
int main() {
puts("hello");
}
Toolchain-MinGW64.cmake:
set(CMAKE_SYSTEM_NAME […]