User Profile

Collapse

Profile Sidebar

Collapse
rabbitysun
rabbitysun
Last Activity: Feb 20 '13, 10:10 AM
Joined: Feb 18 '13
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • rabbitysun
    started a topic suddenly cannot debug....
    in C

    suddenly cannot debug....

    i was just modifying my program 'cause it would give the desired answer and suddenly i couldn't debug it anymore...
    here's the error code

    Code:
    'score.exe': Loaded 'C:\Users\rabbitysun\Documents\Visual Studio 2010\Projects\score\Debug\score.exe', Symbols loaded.
    'score.exe': Loaded 'C:\Windows\System32\ntdll.dll', Cannot find or open the PDB file
    'score.exe': Loaded 'C:\Windows\System32\kernel32.dll', Cannot find or
    ...
    See more | Go to post

  • rabbitysun
    started a topic string display error
    in C

    string display error

    i wrote the code to set the string to be 512 ending with '\0'.
    when i tried to cout the string , it goes like this Image on Google Docs

    what can i do to remove the huge spaces?

    this is the code
    Code:
    #include <iostream>
    #include <algorithm>
    #include <string>
    using namespace std;
    
    
    std::string* DocumentLexAndNorm(std::string& document, unsigned int& numberOfWords)
    ...
    See more | Go to post
    Last edited by Banfa; Feb 20 '13, 09:37 AM. Reason: You can link out to images like that you need to attach the image to the post or just copy and past the text of the command prompt.

  • rabbitysun
    started a topic trouble in call my own function
    in C

    trouble in call my own function

    i'm just a beginner in c++
    my assignment was to wrote the functions.
    i tried to write a main to test it.
    but i could call it correctly/.
    Code:
    #include <iostream>
    #include <algorithm>
    #include <string>
    using namespace std;
    
    bool chars(char x)
    	{
    		if (((x<=90)&&(x>=65))||((x<=122)&&(x>=97)))
    			return false;
    		else return true;
    	}
    ...
    See more | Go to post
No activity results to display
Show More
Working...