|
More site info...
CodeGuru Forums - A Developer.com Community for... - www.codeguru.com | Site profile
|
|
Site profile page for http://www.codeguru.com.
This report page has aggregated and summarized the online discussions from the Message Board located at http://www.codeguru.com.
This site profile page outlines general site statistics such as: Users Activity, Site Activity, Site Rank, and Top Authors, which are reported in either a table or graph below for a given reporting time period.
Additional site profile information for http://www.codeguru.com is also shown in the following divisions:
1) Top 10 Active Forums during Last Week
2) Top 10 Site Forums
3) Latest Active Threads
4) Hot Threads for Last Week
Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a site's popularity and/or exact posting volumes at any given reporting period.
|
|
Title:
|
CodeGuru Forums - A Developer.com Community for C++, C#, VB, Java and .NET Solutions
|
|
Url:
|
http://www.codeguru.com
|
|
Users activity:
|
3 posts per thread |
|
site activity:
|
645 active threads during last week |
|
Site rank:
|
2,241 (go to rank page)
|
|
Domain info for:
|
codeguru.com
|
|
|
|
Posting activity table on CodeGuru Forums - A Developer.com Community for C++, C#, VB, Java and .NET Solutions:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
645
|
2,968
|
8,938
|
|
Post:
|
1,622
|
7,993
|
25,523
|
|
|
Authority Badge:
|
|
|
BoardReader Authority Badge code for CodeGuru Forums - A Developer.com Community for C++, C#, VB, Java and .NET Solutions (http://www.codeguru.com)
|
|
Put this code anywhere on your forum page:
|
|
|
|
|
|
|
|
Rating - The position measured by activity among all forum sites tracked by BoardReader.
If rating is 10 there are 9 forum sites which have higher activity.
Posts - Number of posts on forum site during last 7 days.
Threads - Number of threads on forum site active during last 7 days.
Authors - Number of authors which contributed to the site within last 7 days.
|
|
|
|
|
CodeGuru Forums - A Developer.com Community for C++, C#, VB, Java and .NET Solutions posting activity graph:
|
|
http://www.codeguru.com Alexa graph:
|
Top authors on CodeGuru Forums - A Developer.com Community for C++, C#, VB, Java and .NET Solutions during last week:
user's latest post:
Sorting a list of delimited...
Published (2009-11-05 23:54:00)
Write a module that compares a number to the highest number in the list. It can split the new value, and determine whether to add everything else BEFORE the old list, or add the new number AT THE END of the list.
user's latest post:
Locking An Entire Class
Published (2009-11-05 14:20:00)
Why do you need to check the state? Just attempt to get a lock and if you can't get a lock, you'll know another thread has a lock and will release it soon. I've written some synch classes that are lightweight wrappers around the critical section, mutex, and a readerwriter lock object. I also have an CAutoLock class that provides the RAII form of locking (which automatically unlocks the synch object as it goes out of scope). The...
user's latest post:
reading characters from batch...
Published (2009-11-05 22:23:00)
Are you reading the lines into a std::string or some other kind of variable? Show some relevant code.
user's latest post:
Segmentation Fault
Published (2009-11-06 00:14:00)
1) Every new must be matched with a delete (and new[]/delete[], and malloc/free). 2) If there is no new/new[]/malloc/calloc, then there is no need to explicitly free anything.
user's latest post:
coding help, reverse array,...
Published (2009-11-05 19:04:00)
Quote: Originally Posted by dmitriylm Anything specifically? I believe that is a perfectly legal method to initialize an array. Your belief is wrong. Turn off your compiler extensions, and compile the code as ANSI C++. You will see that it is not legal to declare an array with a non-const expression. Speaking of such -- which version of Visual C++ allows this? This is the Visual C++ forum, and as far as I know, no version of Visual C++ allows...
user's latest post:
get pointer address from text file
Published (2009-11-05 09:06:00)
Wait, doesn't matter how he can read it. As Skizmo said, it doesn't make any sense. Pointers are not to be store and loaded lately. You store the objects they point to.
user's latest post:
PHP Display Telephone Number On...
Published (2009-11-05 16:44:00)
Please start using [php] tags. Instructions to use them are found in the BB code link at the bottom left of the page. As for your problem, you aren't being clear. What about that snippet you just posted isn't working? Also, why are you using UTF-8 single quotes? Use basic ' single quotes or double quotes. Change... PHP Code: if(!isset( $_SESSION [& #8217;referrer’])){ To... PHP Code: if(!isset(...
user's latest post:
get pointer address from text file
Published (2009-11-05 08:51:00)
Read it as text, then use strtol (or wcstol for UNICODE) with the base = 16. BTW, what are you going to do with such a "pointer address"?
user's latest post:
Help writing a java anagram solver
Published (2009-11-05 14:25:00)
Quote: Originally Posted by Jamais_Vu would there be a way to break the word into individual characters A word could be String containing the word characters. If you look at the String API you'll see a number of ways to access individual characters. Alternatively, you could use an array or ArrayList of characters. Quote: ... then find the words that use no characters other than those from the divided word? This is a logic question, not a...
|
|
|
Top 10 active forums on CodeGuru Forums - A Developer.com Community for C++, C#, VB, Java and .NET Solutions during last week:
|
|
Top 10 forums on CodeGuru Forums - A Developer.com Community for C++, C#, VB, Java and .NET Solutions:
Visual C++ Programming
- 105,798 posts
|
C++ (Non Visual C++ Issues)
- 64,985 posts
|
C-Sharp Programming
- 30,652 posts
|
Visual Basic 6.0 Programming
- 30,633 posts
|
General Discussion / Chit Chat
- 16,084 posts
|
Java Programming
- 13,708 posts
|
Visual Basic .NET
- 12,577 posts
|
C++ and WinAPI
- 10,356 posts
|
Network Programming
- 4,882 posts
|
ASP.NET
- 4,371 posts
|
|
|
|
|
Latest active threads on CodeGuru Forums - A Developer.com Community for C++, C#, VB, Java and .NET Solutions:
Started 3 days, 20 hours ago (2009-11-05 14:07:00)
by potatoCode
Your example does show that the standard is correct.
Quote:
Originally Posted by C++ standard
Function declarations at block scope and object declarations with the extern specifier at block scope refer to declarations that are members of an enclosing namespace,
is equally saying
Code:
namespace nsC
{
...
Started 5 days, 9 hours ago (2009-11-04 01:30:00)
by Snoopy07
Hi
msvcr71.dll is a process belonging to the Microsoft C Runtime Library program . msvcr71.dll is a module containing standard C library functions such as printf, memcpy, and cos. It is a part of the Microsoft C Runtime Library.
_malloc_dbg
requires the header <crtdbg.h>.
maybe you forogot to include it.
Started 4 days, 7 hours ago (2009-11-05 03:28:00)
by olivthill2
Have interesting things to share on your site, and present them well, e.g. respect the rules of grammar (write a capitalized letter at the beginning of your sentences, "How" instead of "how" in the title of this thread, "Guys", instead of "guys", and remove any spaces between an exclamation mark and the word that comes before it, have a space after a comma, not before, etc.).
Started 3 days, 11 hours ago (2009-11-05 23:21:00)
by pi3orama
String "hullo" should reside in data section, the memory is allocated when the program loaded and never and needn't be free, because it has only 1 copy during the program execution.
You can try to modify the string:
wee[1] = '\0';
you should receive a SEGFAULT because it in data section and readonly.
If you look at the address of "hullo", you should find that it is 0x08xxxxxx, very ...
Started 3 days, 8 hours ago (2009-11-06 01:55:00)
by VB_Learner
check the link, which direct to the answer posted at VBForums.com
Hope, this will help.
[Link]
http://www.vbforums.com/showthread.php?t=111383
[/Link]
Started 6 days, 8 hours ago (2009-11-03 02:40:00)
by Ruined Embrace
Code:
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main()
{
string lastName;
double number, target, parkingSticker;
const double SENTINEL = 000000;
cout << "Please enter a parking sticker number (enter 000000 to exit): " << endl;
cin >> target;
while (target != SENTINEL)
{
ifstream input("HWK5.txt");...
Started 4 days, 7 hours ago (2009-11-05 03:34:00)
by Skizmo
Why do you need a extra program ? Visual Studio will tell you exactly which lines of code are leaking.
|
|
Hot threads for last week on CodeGuru Forums - A Developer.com Community for C++, C#, VB, Java and .NET Solutions:
Started 1 month, 4 weeks ago (2009-09-10 12:50:00)
by Brad Jones
We recently had a management change that should help going forward on adding features and updating this site (to some extent). We are also in the process of going through an ownership change as well (Internet.com was sold and is going through SEC approvals).
I mention this because in the first case, I think it will be a huge help. The second case is still to be seen what impact that will have...
Started 1 week ago (2009-11-01 11:57:00)
by Paul McKenzie
Quote:
Originally Posted by phamster
Hey guy, I have a text file and stores each line into a link list. how do I sort my link list by my varible call myIntPacket?
First, please re-edit your post to use code tags. The code you posted is practically unreadable.
Second, is there a reason why you just didn't use ...
Started 1 week, 2 days ago (2009-10-30 15:07:00)
by cilu
But where did you attach the m_edit variable to the edit control window? I don't see that code.
Started 1 week, 3 days ago (2009-10-30 06:59:00)
by ltcmelo
I cannot say that for sure because you didn't post all the code.
The hidding situation is in accordance to the standard. This happens even for non-templates classes. The C++ lookup mechanism will not look further for in other scopes if it already finds a name match in the current class. Example:
Code:
struct A
{
bool IsValid(int i) const {return true;}
};
struct B : A...
Started 1 week, 1 day ago (2009-10-31 13:17:00)
by nuzzle
Quote:
Originally Posted by KezRst
So I just haven't found a situation where they're totally needed and I guess that's what I'm looking for.
The only time you really need to handle pointers is when you allocate objects on the heap (the free store) using the new operator. It will return a pointer to the newly ...
Started 5 days, 1 hour ago (2009-11-04 09:01:00)
by peejavery
Security like this has to be on the server side. You could add a fake extension to the httpd.conf file to be parsed by the PHP interpreter.
Code:
AddType application/x-httpd-php .myextension
Started 5 days, 7 hours ago (2009-11-04 03:28:00)
by VictorN
Quote:
Originally Posted by schrummy
my questions are; Why the 5 is put to the next line, same with the 4 and the 9? and Why is there a 0.
Well, what output would you expect?
Quote:
Originally Posted by schrummy
Code:
if (count == 0)
...
Started 1 week, 1 day ago (2009-10-31 15:56:00)
by potatoCode
Code:
complx &operator + ( double d, complx c)
{
complx result (d + c.Real(), c.Imaginary());
return result;
}
You're returning a reference of a temporary object, don't do that.
Assuming your ctor and dtor are fully defined,
code such as 9.5 + foo should compile fine. (foo is of complx)
and of course, there are many improvemenets you can work with the complx ...
Started 5 days, 1 hour ago (2009-11-04 09:48:00)
by Skizmo
Quote:
i want to make an .exe file that builds another .exe file using parameters that user types.
With ShellExecute you can call a compiler from your own program.
Started 5 days, 15 hours ago (2009-11-03 19:47:00)
by xPudgyx
I just started learning c++ basically fresh out of the Hello World program. I'm trying to fix this. Love challenges.
|
|