C is a general-purpose programming language used for system programming (OS and embedded), libraries, games and cross-platform.
I want to read the name entered by my user using C programmes. For this I wrote: char name[20]; printf("…
c stdinI keep getting this error mesage when trying to add a breakpoint in gdb. I've used these commands to compile: …
c gdbIm trying to create a function inside a structure, so far i have this code: typedef struct client_t client_…
c function structI was wondering how you could take 1 string, split it into 2 with a delimiter, such as space, and assign the 2 …
c string strtokIn C (not C++/C#) how do I check if a variable is of a certain type? For example, something …
c types structAs the title implies, my question is how to get the size of a string in C. Is it good …
c sizeof arrays