Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
~12.4K People Reached
Favorite Forums
Favorite Tags
c x 15
java x 7
c++ x 2
Member Avatar for Yustme

Hi everybody, I'm new in programming. Getting started with C. Im trying to do a few easy things like to uppercase a string. But i got stuck... This is what i have so far: [code] void toupper( char *text ) { char c[] = "testING"; } [/code] And im not …

Member Avatar for brcsur
0
9K
Member Avatar for Yustme

Hi, I'm trying to make a project which "converts" for example from meters to centimeters. I fill 20 labels with a random generated question containing a "fromUnit" and "toUnit" object. Here is my code: [code] public partial class Metrics : Form { private double[] _answer; private TextBox[] _textBox; private Label[] …

Member Avatar for iamthwee
0
158
Member Avatar for Yustme

Hi, Im having a lil problem which i can't figure out myself.. I tried searching google, but i found nothing what might even help me the slightest bit.. I wanna compare 2 xml files with eachother. One xml file is standard on my pc and has the name pc.xml. the …

Member Avatar for Yustme
0
660
Member Avatar for Yustme

Hi, How do i align text to the right in java? Default its from left... Thnx in advance!

Member Avatar for server_crash
0
77
Member Avatar for Yustme

Hi, Im having a lil problem which is kinda fustrating me. This line of the code: g.fillRect( xPos, yPos - 20 - sensor[i], 20, sensor[i] ); the last sensor[i] besides how high the rect will be. And in this case that would be 1, 2, 3, 4, 5, 6 and …

Member Avatar for Yustme
0
518
Member Avatar for Yustme

Hi, Im trying to make a multiply table from 1 to 10. Im trying to do this with array's. This is the code i have till now: [code] #include "conio.h" #include <stdio.h> #include <stdlib.h> #include <ctype.h> #include <string.h> #include <cmath> #define arraylen = 10 main() { int x[11], *a; int …

Member Avatar for Yustme
0
129
Member Avatar for Yustme

Hi, Im trying to make a function that flip bits. There is not much usefull to find on the net about this. Like an example of such function. Does anyone have a function that flipbits? Thnx in advance!

Member Avatar for Narue
0
2K