- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
7 Posted Topics
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 … | |
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[] … ![]() | |
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 … | |
Hi, How do i align text to the right in java? Default its from left... Thnx in advance! | |
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 … | |
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 … | |
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! |
The End.