- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 2
- Posts with Downvotes
- 1
- Downvoting Members
- 2
17 Posted Topics
I was wondering if a function of the form public String GetString { get { return stringValue } } is faster than a fucntion of the form public void GetString(out String value) { value = stringValue; } :)
Check this link http://www.daniweb.com/software-development/csharp/threads/182767/passing-values-with-textbox
hello ya'll, i'm looking for help with using regex for finding a name like (v/d haren). can someone help with solving this
Hallo, How can i use Regex to match names in different files. e.g. i have 3 files with names. i need to link the matching names in the different file. any ideas.
hi guys, i'm trying to write an character converter using php and ajax. i'm getting a really anoing error(uncaught TypeError). can someone help me with this.?:?: , i've added screenshot of the error. and this is the xml i'm trying to read generated with php [CODE]<?php $key = $_GET['key']; header('Content-type:text/ …
hi everyone, i never worked with php or any script language before i am more of a java, c++, C programmer, but for a school project i need to program a character converter in php, i have some problem recieving response from my php file. can someone help me this …
[code] string array = Random number(); for(string number : array) { if( number < some high number) { display number } } [/code]
Dees anyone have experience with this module, [URL="http://www.robot-electronics.co.uk/htm/usb_i2c_tech.htm"]http://www.robot-electronics.co.uk/htm/usb_i2c_tech.htm[/URL] im trying to use the i/o function on it to read values form this sensor: [URL="http://www.robot-electronics.co.uk/htm/srf04tech.htm"]http://www.robot-electronics.co.uk/htm/srf04tech.htm[/URL] is it possible to do so? thanx
public class [COLOR="Red"]double[/COLOR] { public static void main(String[] args ) { [COLOR="red"]double[/COLOR] d=1232.44; System.out.println("the double value is :"+d); }} you cannot use keywords lik NormR1 says
hi guys, i'm trying to write a program in C# to read a SRF04, through a USB I2C connnector. this is my first time working wiht I2C and usb and i need some help. [URL="http://www.robot-electronics.co.uk/htm/usb_i2c_tech.htm"]http://http://www.robot-electronics.co.uk/htm/usb_i2c_tech.htm[/URL] im using the I/O settings to write to the Sonar. Can someone provide me wiht …
Hi everyone, how do i push item with a givin index in a linkedlist. e.g. linkedlist.add(element e, int index); this is my function [CODE]public void push(Student s, int index){ if(isEmpty()){ start = s; }else{ last.next = s; } last = s; size++; }[/CODE]
hi everyone, i have a constructor like this, [CODE] CStack(int n) { bottom_ = new char[n]; top_ = bottom_; size_ = n; } [/CODE] In my main class i call the constructor by creating a[CODE] CStack(5); // bottom_ = new char [5]; [/CODE] my question is can increment the size …
can i change the value of an int with a pointer. e.q. int n = 20; int *size = n; can i change n by doing this *size++. thanx
hey guys, i'm trying to acces the the member of my person structure, can someone help me, what am i doing wrong are what am i forgetting [CODE]#include <stdio.h> #include <stdlib.h> typedef struct { char *vnaam; char *anaam; int leeftijd; } persoon; persoon *q, p1; //char antwoord2b[128]; void drukaf(persoon p){ …
hi everyone, I'm trying to write a program that calculates the the fourth sqrt() of an int ..., can someone help me thnxx
Hi, I'm using Microsoft Visual C++ and I keep getting this error referring to this one line in my main file . can someone HELP ME ? [code]#include <iostream> using namespace std; int main() { float tempFahrenheit; float tempCelsius; float Omrekenen; cout << "Geef de temperatuur in Fahrenheit: "; cin …
The End.