Remember
Register
Search With
Seek4Info.com
Programming & Software Q&A | CollectiveSolver
Questions
Tags
Users
Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.
Contact: aviboots(AT)netvision.net.il
Most popular tags
python
java
c
cpp
c#
javascript
php
vb#
typescript
nodejs
go
rust
scala
swift
kotlin
pascal
html
ruby
dart
r
css
bootstrap
win32
groovy
winapi
sql
mysql
vbnet
jquery
pascal-string
lua
winforms
kotlin-string
bash
c-string
swift-string
cpp-string
go-string
c#-string
php-string
java-string
vbnet-string
cobol
rust-string
python-string
cpp-vector
f#
opengl
scala-string
javascript-string
pascal-array
swift-array
typescript-string
c-array
php-array
javascript-array
rust-vector
typescript-array
python-list
reactjs
scala-array
c-windows
nodejs-string
go-array
kotlin-array
nodejs-array
sdl2
cpp-matrix
cpp-array
c#-list
vbnet-list
c-matrix
pascal-matrix
go-slice
c#-array
java-array
nodejs-express
character-code-ascii-unicode
swift-matrix
c#-matrix
sdl3
angularjs
transpose-matrix
binary-search-algorithm
dot-product-two-arrays
generate-random-floating-point-numbers
all-permutations-combinations
kotlin-matrix
typescript-matrix
vbnet-array
kotlin-list
measure-function-execution-time
sort-words-string
exabyte-constant
petabyte-constant
terabyte-constant
math-functions-constants
string-to-title-case
create-infinite-loop
rust-matrix
Disclosure:
My content contains affiliate links.
Recent questions tagged c
41,445
questions
53,992
answers
573
users
Recent questions tagged c
1
answer
232
views
How to use strrchr() function to return a pointer to the last occurrence of a character in string in C
asked
Jan 28, 2016
by
avibootz
c
1
answer
406
views
How to create a blank Win32 window in C Win32 API
asked
Jan 28, 2016
by
avibootz
c
win32
winapi
1
answer
171
views
How to find all occurrences of a character in string in C
asked
Jan 28, 2016
by
avibootz
c
2
answers
258
views
How to use strchr() function to return a pointer to the first occurrence of a character in string in C
asked
Jan 28, 2016
by
avibootz
c
3
answers
305
views
How to get string length with strlen() function in C
asked
Jan 27, 2016
by
avibootz
c
2
answers
221
views
How to get the length of one dimensional int array (array[]) in C
asked
Jan 27, 2016
by
avibootz
c
2
answers
285
views
How to determine the size (row, col) of two dimensional array (array[][]) in C
asked
Jan 27, 2016
by
avibootz
c
2
answers
261
views
How to use strncmp() to compares N characters from s1[] s2[][] in C
asked
Jan 26, 2016
by
avibootz
c
3
answers
317
views
How search within the first N bytes of the block of memory with memchr() function in C
asked
Jan 26, 2016
by
avibootz
c
1
answer
280
views
How to copy struct with memcpy() in C
asked
Jan 26, 2016
by
avibootz
c
1
answer
194
views
How to set value to struct with memcpy() in C
asked
Jan 26, 2016
by
avibootz
c
2
answers
236
views
How to use memcpy() function to copies n characters from memory area s1[] to memory area s2[] in C
asked
Jan 26, 2016
by
avibootz
c
2
answers
279
views
How to use strncat() function to append (concatenate) the first n characters from string s1[] to s2[] in C
asked
Jan 26, 2016
by
avibootz
c
2
answers
290
views
How to use strcat() function to append (concatenate) a string s1[] to s2[] in C
asked
Jan 26, 2016
by
avibootz
c
2
answers
273
views
How to use strcpy() function to copy string in C
asked
Jan 26, 2016
by
avibootz
c
1
answer
240
views
How to use perror() function to print an error message in C
asked
Jan 26, 2016
by
avibootz
c
3
answers
329
views
How to read (input) a line from a text file and display it in C
asked
Jan 26, 2016
by
avibootz
c
2
answers
254
views
How to write (output) a text line to a text file in C
asked
Jan 25, 2016
by
avibootz
c
2
answers
208
views
How to use getc() and putc() in C
asked
Jan 25, 2016
by
avibootz
c
1
answer
290
views
How to calculate the first N (random up to 100) prime numbers in C
asked
Jan 21, 2016
by
avibootz
c
2
answers
245
views
How to define and use bit fields in C
asked
Jan 5, 2016
by
avibootz
c
1
answer
216
views
How to insert items in a double linked list: insert at front, insert at end, insert in middle in C
asked
Jan 1, 2016
by
avibootz
c
2
answers
274
views
How to read all content (at once) from a text file in C
asked
Dec 22, 2015
by
avibootz
c
1
answer
232
views
How to get the size of a file in C
asked
Dec 22, 2015
by
avibootz
c
1
answer
275
views
How to implement the function fputs() from stdio.h that write characters (string) to a file in C
asked
Dec 22, 2015
by
avibootz
c
3
answers
291
views
How to implement the function fgets() from stdio.h that read characters (string) from a file in C
asked
Dec 22, 2015
by
avibootz
c
1
answer
233
views
How to write variables directly to a file with fprintf in C
asked
Dec 18, 2015
by
avibootz
c
1
answer
302
views
How to insert items in linear (single) linked list: insert at front, insert at end, insert in middle in C
asked
Dec 16, 2015
by
avibootz
c
2
answers
290
views
How to input (read) formatted date from a string with sscanf() function in C
asked
Dec 14, 2015
by
avibootz
c
1
answer
307
views
How to calculate log10 (base-10 logarithm) in C
asked
Dec 13, 2015
by
avibootz
c
1
answer
319
views
How to calculate exponent (base raised to the power of exp) (power function) in C
asked
Dec 13, 2015
by
avibootz
c
1
answer
202
views
How to write reverse a number with recursive function in C
asked
Dec 11, 2015
by
avibootz
c
2
answers
314
views
How to define and use union within a struct in C
asked
Dec 9, 2015
by
avibootz
c
1
answer
190
views
How to use typedef for char * in C
asked
Dec 8, 2015
by
avibootz
c
1
answer
173
views
How to use typedef for int in C
asked
Dec 6, 2015
by
avibootz
c
1
answer
231
views
How to build binary tree of words, count the words occurrences, print the words sorted (ABC...) and free the tree in C
asked
Dec 5, 2015
by
avibootz
c
1
answer
274
views
How to define, input value and print srtuct array that include char * field in C
asked
Nov 30, 2015
by
avibootz
c
1
answer
339
views
How to define set value and return nested struct from function in C
asked
Nov 27, 2015
by
avibootz
c
1
answer
276
views
How to define set value and return struct from function in C
asked
Nov 27, 2015
by
avibootz
c
1
answer
227
views
How to pass a pointer to function to another function as parameter in C
asked
Nov 25, 2015
by
avibootz
c
1
answer
162
views
How to swap two characters in array of characters in C
asked
Nov 24, 2015
by
avibootz
c
1
answer
189
views
How to count the number of times we run a function in C
asked
Nov 24, 2015
by
avibootz
c
1
answer
183
views
How to compares two strings with numbers numerically in C
asked
Nov 23, 2015
by
avibootz
c
2
answers
230
views
How to initialize and print pointer array to strings in C
asked
Nov 21, 2015
by
avibootz
c
3
answers
366
views
How to declare, initialize and print two dimensional (2D) int array (matrix) in C
asked
Nov 20, 2015
by
avibootz
c
1
answer
196
views
How to copy the first n characters from one string to other string with strncpy() function in C
asked
Nov 20, 2015
by
avibootz
c
1
answer
163
views
How to to append a string to other string in C
asked
Nov 20, 2015
by
avibootz
c
2
answers
816
views
How to implement my own strcmp() function to compare two strings in C
asked
Nov 20, 2015
by
avibootz
c
1
answer
217
views
How to calculate to total millisecond of one day in C
asked
Nov 19, 2015
by
avibootz
c
1
answer
305
views
How to calculate to total second of one day in C
asked
Nov 19, 2015
by
avibootz
c
Page:
« prev
1
...
71
72
73
74
75
76
77
78
79
80
81
82
next »
...