Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

header.h: No such file or directory even though source and header are in same directory

c gcc compiler-errors header

Is float value guaranteed to be 0 when a float variable is initialized to 0.0?

Why do we need to declare functions before using them in C?

c c99

How to boot my simple hello world program? [closed]

c++ c assembly boot

How to define end to an array of strings

Undefined behaviour of right shift (a >> b) when b is greater than the number of bits in a?

XV6: ptable initialization

c proc xv6

Read barcodes from input-event (linux, c)

insert array of hex codes into an integer

arrays c insert endianness

How to cascade -> operator?

c pointers dereference

Why does this if statement require brackets?

c if-statement

What is this C programming reading?

c file-io

Why does execl require me to hit "Enter" after running a process?

c linux bash execl

Why is implicit pointer of pointer to pointer conversion legal?

c pointers language-lawyer

Read from stdin with fgets, bug if input is greater than size

c

What does mandatory integrity level value of 0x2010 stand for?

c++ c windows winapi kernel32

Rounding float to nearest integer in C

c

Proper way to return a string in C

c string pointers

Pointer Arithmetic in C using Array Variables

c arrays pointers

When to not create a separate interface (.h) and implementation (.c) in C? [closed]