Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~2K People Reached
Favorite Tags
Member Avatar for Dean_Grobler

Hey guys, I'm working on Ubuntu 10.04. I use Eclipse as my IDE, but now I want to install the Android ADT plugin for eclipse(as seen [URL="http://developer.android.com/sdk/eclipse-adt.html"]here[/URL]). Now the thing is, that I don't have internet connection on the machine that has Eclipse running so I can't simply go to …

Member Avatar for bettybarnes
0
940
Member Avatar for rdrahul809

I am new to c++ language, and i am stucked with this que. my teacher told me to write a prog. that will calculate (1)square-(3)square+(5)square-(7)square+(9)square.............so on using for loop can you help me.

Member Avatar for Schol-R-LEA
0
103
Member Avatar for bakwanyana

Hi all I have been tasked to implement a median filter on an image - this involves creating a window that will traverse the entire image. When the window goes out of bounds of the image, the guilty indices are supposed to be set to zero. My problem is that …

Member Avatar for bakwanyana
0
255
Member Avatar for bakwanyana

[code]#include <stdio.h> #include <time.h> #include <cstring> #include <iostream> #include <fstream> #include <sstream> using namespace std; int main () { ofstream file; stringstream ss; time_t rawtime; struct tm * timeinfo; time ( &rawtime ); timeinfo = localtime ( &rawtime ); char g[30]; char buffer[10]; itoa(timeinfo->tm_mday,buffer,10); strcat(g,buffer); strcat(g,"-"); itoa(timeinfo->tm_mon+1,buffer,10); strcat(g,buffer); strcat(g,"-"); itoa(timeinfo->tm_year+1900,buffer,10); …

Member Avatar for Ancient Dragon
0
203