Randy Proctor

680
Reputation
187 views

Registered User

Name Randy Proctor
Member for 1 year
Seen 1 hour ago
Website
Location
Age
Nov
23
comment Structs interface
Good question! I got nothing.
Nov
23
comment Structs interface
No reason you couldn't write "aStruct.setSomeValue(VALUE)", assuming a proper init function to set some function pointers.
Nov
20
comment strcat() vs sprintf()
strncpy() can leave you without a terminator. strlcpy() or strlcat() would be better.
Nov
13
answered Case Insensitive comparision of strings in Shell script
Nov
10
awarded  Nice Answer
Nov
10
answered Saying “C & C# are equal by functionality, but not by concept”
Nov
6
answered Set screen-title from shellscript
Nov
6
comment To take the backup of required files of SVN repository
You need the history I assume?
Nov
5
answered Reverse a word in Vim
Nov
4
comment Is There C Syntax For Function Pointer From Function Declaration
Nevermind, beaten.
Nov
4
answered Is There C Syntax For Function Pointer From Function Declaration
Nov
3
comment strcat problem in C, segmentation fault
This looks like it's a long way from working. You might want to post all of the code.
Oct
30
answered BASH: Copy named files recursively, preserving folder structure
Oct
29
comment How can I get a file’s size in C?
Note that sizeof(char) is 1, by definition.
Oct
14
comment Comparing two identical strings returns false in PHP
What does strcmp() say?
Sep
26
awarded  Yearling
Aug
24
answered Detecting if a given number is an integer
Jul
15
comment how to get the size of a dir programatically in linux ?
The disk usage (du) and sum of file sizes (stat) are not the same thing. Which do you want?
Jul
2
answered Is there any Java function or util class which does rounding this way: func(3/2) = 2?