paxdiablo

62,056
reputation
5849 views

Registered User

name paxdiablo
member for 1 year
seen 2 hours ago
website
location
age
23h
revised Warning while passing 2d array
added 52 characters in body
23h
revised Warning while passing 2d array
added 189 characters in body
23h
revised Can someone please help? Basic programming class.
deleted 7 characters in body
1d
comment question on struct with char array
Then you cannot treat the array as a string, you must process the int elements one-by-one. I'm not sure exactly what you're trying to achieve. It may be better to ask a separate question on how to do it (with no preconceived notions) rather than how to modify this existing code.
1d
comment Would VS2008 c++ compiler optimize the following if statement?
@Gman, that's an old trick to avoid accidentally using = instead of ==. I don't use it myself but I can see how it's useful. "int c = 0; if (c = 1) printf ("WTF!\n);" would be caught if you used "if (1 = c)".
1d
comment Would VS2008 c++ compiler optimize the following if statement?
+1 for the reductio ad absurdum (crikey, I hope I spelled that correctly), especially the logical endpoint: if it is true that it is true that it is true ... that it is true that x is false.
1d
comment Would VS2008 c++ compiler optimize the following if statement?
+1. The "if (n == true)" paradigm is a hideous monstrosity :-)
1d
comment I’m looking for Paid Help
Actually, @Tim, that question was for people wanting to do paid work, not have it done for them. But I guess the answers would be the same anyway.
1d
revised question on struct with char array
added 335 characters in body; added 66 characters in body
1d
accepted question on struct with char array
1d
answered I’m looking for Paid Help
1d
revised question on struct with char array
added 509 characters in body; added 193 characters in body
1d
answered question on struct with char array
2d
comment How to make the bytes of the block be initialized so that they contain all 0s
Good point and easily fixed by not doing the divide check when count is zero. Everything else still works since the realsz will be zero for either of your cases and allocating zero bytes is valid.
2d
revised How to make the bytes of the block be initialized so that they contain all 0s
added 33 characters in body
Dec
14
revised Best way to transfer bitmap object over lan
deleted 2 characters in body
Dec
14
revised Search in more than one table - give result as one column.
added 49 characters in body
Dec
14
comment Search in more than one table - give result as one column.
Use union instead of union all - it will remove the duplicates.
Dec
14
revised Make sure int variable is 2 digits long, else add 0 in front to make it 2 digits long
added 449 characters in body
Dec
14
accepted Make sure int variable is 2 digits long, else add 0 in front to make it 2 digits long
Dec
14
answered Make sure int variable is 2 digits long, else add 0 in front to make it 2 digits long
Dec
14
revised Search in more than one table - give result as one column.
added 9 characters in body
Dec
14
accepted Search in more than one table - give result as one column.
Dec
14
answered Search in more than one table - give result as one column.
Dec
14
comment Problems writing the memset function
Interestingly, that's not so in c1x. The c1x text for "Future library directions" reads "All external names described below are reserved no matter what headers are included by the program." which makes it more stringent. But on further googling, that same phrase is apparently in c90. So I don't think you are wrong.
Dec
14
revised Patent for representing numbers using binary, is this valid for a patent?
added 2 characters in body
Dec
14
comment Problems writing the memset function
Where in the C standard does it say mem[a-z]* is reserved?
Dec
14
comment Why would a browser make two separate requests for the same file?
I love the link to your localhost address. Amusing, but not that useful. Let's see how many people report it as a broken link :-)
Dec
14
comment Problems writing the memset function
@unknown, have a look at the section of this answer immediately followint "Update:". You have a memory block where every character is 0x02 but you are printing an integer from that memory block. An integer in your case is 4 characters, not one. That's why you're getting the value 0x02020202. If you print a char from that block, you'll get the value you expect.
Dec
14
accepted Problems writing the memset function
Dec
14
revised Problems writing the memset function
added 513 characters in body
Dec
14
revised Problems writing the memset function
added 461 characters in body; added 129 characters in body; added 11 characters in body
Dec
14
answered Problems writing the memset function
Dec
14
comment Problems writing the memset function
If you're writing the memset function, you should not be checking for null pointer - the real memset doesn't do that.
Dec
13
revised How to make the bytes of the block be initialized so that they contain all 0s
Incorporate comments.
Dec
13
comment How to make the bytes of the block be initialized so that they contain all 0s
@AndreyT, I did think of that but, since it's simple homework, I left it out, which is why I explicitly put the "basic" adjective in there because of that. @c2009l1, make sure you don't use code verbatim from the net for homework. You would be unwise to think your educators do not look out for this. That's why I have little concern with answering SO homework questions with a bit of code nowadays - if people are silly enough to use it without understanding (and changing), they deserve to fail :-)
Dec
13
revised How to make the bytes of the block be initialized so that they contain all 0s
added 457 characters in body
Dec
13
answered How to make the bytes of the block be initialized so that they contain all 0s
Dec
13
comment Programatically changing hash of a file without corrupting it
I wasn't judging you, Joseph, more judging your provider. Why is he even contemplating saving disk space when you're well under capacity? I agree with you that he's in the wrong.
Dec
13
comment Programatically changing hash of a file without corrupting it
Are you actually paying for this hosting? Do you have a limit on storage that you are currently not exceeding? If so, your host should have zero right to delete your files.
Dec
13
revised Programatically changing hash of a file without corrupting it
added 376 characters in body; added 348 characters in body
Dec
13
answered Programatically changing hash of a file without corrupting it
Dec
12
awarded  c++
Dec
12
comment get years between 2 dates?
"i dont want to use -" : why not?
Dec
12
revised Linking error when compiling C and C++ code with g++
deleted 45 characters in body
Dec
12
accepted C++ Bus error in SPARC arcitecture
Dec
12
revised C++ Bus error in SPARC arcitecture
added 125 characters in body; added 339 characters in body; deleted 92 characters in body
Dec
12
answered C++ Bus error in SPARC arcitecture
Dec
12
accepted MySQL View: How do I set default value of a calculated field to 0?
Dec
11
comment Why are compilers so stupid?
So does a big for-loop unless it's optimized away :-)