war with eof()
(cat myfile -) | ./a.out
YOU ARE THE REASON
Stranger Things
Peter Solarz
AnasAbdin
styofa doing anything
Misplaced Lens Cap

Discoholic 🪩
Three Goblin Art
Aqua Utopia|海の底で記憶を紡ぐ

No title available
d e v o n
tumblr dot com
Keni

@theartofmadeline
hello vonnie
"I'm Dorothy Gale from Kansas"

#extradirty

titsay

JVL
Today's Document

seen from South Africa
seen from United Kingdom

seen from United States

seen from United States
seen from T1

seen from South Africa
seen from India
seen from Germany

seen from United States
seen from T1
seen from Türkiye

seen from United States
seen from United States
seen from United States

seen from United States
seen from United States

seen from United States

seen from Iraq
seen from United States
seen from United States
@dqpbtmblr
war with eof()
(cat myfile -) | ./a.out
Overview and Introduction to Lisp Despite the copyright notice on the screen, this course is now offered under a Creative Commons license: BY-NC-SA. Details ...
“Well, similarly, I think in the future, people will look back and say, yes those primitives in the 20th century were fiddling around with these gadgets called computers, but really what they were doing is starting to learn how to formalize intuitions about process, how to do things, starting to develop a way to talk precisely about how-to knowledge, as opposed to geometry that talks about what is true.” - Abeslon
x86 Assembly Instruction Operands
Three types:
- Immediate
- Register
- Memory
Mov Instruction possibilities:
Immediate -> Register
Immediate -> Memory
Register -> Register
Register -> Memory
Memory -> Register
Memory <-> Memory (X) - x86 restriction: memory cannot be moved directly to another memory.
How to limit template generic types in C++?
specialization
type traits
concepts
thx to utilforever, 커헠
Ncurses Howto
http://www.ibiblio.org/pub/Linux/docs/HOWTO/NCURSES-Programming-HOWTO
https://wiki.kldp.org/wiki.php/NCURSES-Programming-HOWTO
EBO
http://en.cppreference.com/w/cpp/language/ebo
https://en.wikibooks.org/wiki/More_C%2B%2B_Idioms/Empty_Base_Optimization
https://stackoverflow.com/questions/4325144/when-do-programmers-use-empty-base-optimization-ebo
Signed and Unsigned arithmetic
Signed is implicitly converted to Unsigned...
https://stackoverflow.com/questions/50605/signed-to-unsigned-conversion-in-c-is-it-always-safe
1 < -1
lol
gcc -pedantic option
void pointer arithmetic <- no warning in gcc even though -Wall -Wextra
-pedantic option enabled the warning.
Printable PDF The proper use of C's volatile keyword is poorly understood by many programmers. This is not surprising, as most C texts dismiss it in a sentence or two. This article will teach you the proper way to do it. Have you experienced any of the following in your C or C++ embedded code?
https://stackoverflow.com/questions/1143262/what-is-the-difference-between-const-int-const-int-const-and-int-const
I wonder if typedef and #define are the same in c?
typedef int * int_pointer
is this a good or bad idea?
ref: https://stackoverflow.com/questions/750178/is-it-a-good-idea-to-typedef-pointers
c printf cannot print negative hex...
Therefore the value of -1 is forced to print ffffffff no matter what...
Even if char c = -1 will be printed out as ffffffff (4 byte), while it’s real bit level representation is just 0xff (1 byte).
Must use ‘unsigned char’.
Compiler Design Tutorial for Beginners - Learn Compiler Design in simple and easy steps starting from basic to advanced concepts with examples including Overview, Lexical Analyzer, Syntax Analysis, Semantic Analysis, Run-Time Environment, Symbol Tables, Intermediate Code Generation, Code Generation and Code Optimization.
I have a pointer to integer array of 10. What should dereferencing this pointer give me? Eg: #include main() { int var[10] = {1,2,3,4,5,6,7,8,9,10}; int (*ptr) [10] = &...
Buffer Overflow Attack - Computerphile
How secure is 256 bit security?