Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

How to find number of 1's in a binary number in O(1) time?

Is it possible to convert C/C++ source code to assembly?

c++ c assembly

C string function calls, pass by value or reference?

c string parameter-passing

Who writes header files

c header-files

C Pointers: *ptr vs &ptr vs ptr

c pointers

initialized vs uninitialized global const variable in c

c

Why languages such as C, Pascal cannot implement tail recursion?

Why is this algorithm O(N)?

c algorithm big-o

Why C11 standard doesn't drop unsafe strcat(),strcpy() functions?

c strcpy c11 strcat

Difference between NOT false and true

c

Will a string initializer somewhat waste memory?

Increment char pointer

c char increment

Free all the memory allocated by malloc(), realloc() in C

Why Is This Factorial Algorithm Not Accurate

c algorithm

What is this a.out and what makes it disappear?

c gcc

why formatting an int as 6*1000*1000 and not 6000000 [duplicate]

c syntax formatting int

Why ++(*p) is not giving l-value required error?

c arrays pointers lvalue

Why is __cplusplus defined within extern "C"

c++ c mpi

Why does this code print 1 2 2 and not the expected 3 3 1? [duplicate]

ANSI C No-echo keyboard input

c