Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

Should you check parameters passed into function before passing them, or check them in the function?

c parameter-passing

how to iterate through an array without knowing the size in c [duplicate]

Implementation of the quick select algorithm to find kth smallest number

c algorithm recursion

Is there a way to embed a Sh/Bash session in C or C++?

c++ c bash shell

Commenting Standards C

c comments

gcc, how to force the final executable link a unused shared library?

c gcc

initialize an array from another array in C

c

How does libc provide functions with two names?

c libc

Changing the drawing color using Xlib

c++ c xlib

Opening long file names in Windows using fopen with C

c windows

Segmentation fault while using vfprintf()

largest sum contiguous sub array using recursion to directly output result

Why char specified as integer in printf gets printed correctly

In the "Two Sum" question in Leetcode, why do we have to *returnSize=2; in C language?

arrays c pointers malloc

Segmentation fault at the end of the C program

c

cython: reducing the size of a class, reduce memory use, improve speed [closed]

python c python-3.x cython

enum declaration in header file

c enums header-files

C , Error: Expression must be a modifiable lvalue

Why does fgets() accept (signed) int for its 'count' argument?

arrays c language-lawyer fgets

What is the purpose of (void)variable in C? [duplicate]

c embedded