What does "process" exactly mean?
When a dll is loaded into memory ,does it's memory usage appear in processes section, inside application's memory usage digits on the...
Let's say the .exe file of a program is 480 kb.When you run the program,does it use about 480kb of memory?
Functions use memory,variables use memory,objects use memory...
I want to generate big random numbers in C(not C++ please).By "big" I mean integers much bigger than srand(time(NULL)) and rand() functions' limit(32767).
Let's say that we don't know how many "for loops" we need before the program starts and user inputs a number,should we use recursive function instead of "for loops"?Or is there a way to do it using...
I have read that compiler allocates memory for an array.What does it exactly mean?For example,if compiler allocates memory at compilation-time,let's say it allocates memory address 189 for an array...
I used pointers instead of arrays,because using arrays is easier but I have not yet understood the pointers topic exactly,so I use them to get more familiar with them and...
I have a problem with the codes below.I am trying to do an exercise from a C book.My code first asks for user input,then it seperates the given input into it's "atoms".Then it changes the words like...
I want to create a program which creates a soccer league match fixture.There are 18 teams in the league.But I couldn't find a way about how I can do it,especially without indefinite...