Hi
Is there a way I could reffer the arguments of a function the same way as the arguments for the main function ?
ex.
void dummyFunction(char* arg1, char* arg2, char* arg3)
{
int count;
for(...
http://www.experts-exchange.com/Programming/Languages/C/Q_10067733.html
Zones:
CDate Answered: 07/28/1998 Grade: A Views: 0
How can i substitute int 21,3A with my own int?
And how can i see what dir is beeng removed when the user uses int 21,3A (rmdir)?
http://www.experts-exchange.com/Programming/Languages/Pascal/Q_10085420.html
Zones:
PascalDate Answered: 10/01/1998 Grade: B Views: 0
How to design and implement a 64-bit integers, which is a new data type for C++? The new data type should support the operator +, -, *, /, and % by C++ operator overloading technique.
Here is the c...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_10098617.html
Zones:
C++Date Answered: 11/19/1998 Grade: A Views: 0
I want to convert a string containing values like "5" and "11" into the integers 5 and 11. How do I do this?
/dedsi
http://www.experts-exchange.com/Programming/Languages/Java/Q_10231608.html
Zones:
JavaDate Answered: 11/11/1999 Grade: B Views: 0
How do I cast to an integer in JavaScript ?
var i;
..
ii = (int) i*0.5
..
I don't want it to be a float, but an integer, how is that done ??
http://www.experts-exchange.com/Programming/Languages/Scripting/JavaScript/Q_10431037.html
Zones:
JavaScriptDate Answered: 06/12/2000 Grade: A Views: 180
I need to read input from keyboard but not as ASCII but as int.
Actualy I just need to read a namber so that I can compare it with some other numbers.
I assume that I should use DataInputStream b...
http://www.experts-exchange.com/Programming/Languages/Java/Q_10920821.html
Zones:
JavaDate Answered: 09/09/2000 Grade: B Views: 0
I want to do very low-level I/O on diskettes. I want to read and write data specified by drive, head, cylinder, sector, and number of sectors. I do not want to read or write formatting information....
http://www.experts-exchange.com/Programming/System/Windows__Programming/Q_11866258.html
I am trying to implement a dynamic array of structs using realloc(), but have no success so far...
#inlclude <stdlib.h>
void main(void)
{
typedef struct
{
int abc;
}abc_type;
...
http://www.experts-exchange.com/Programming/Languages/C/Q_20082709.html
Zones:
CDate Answered: 02/23/2001 Grade: A Views: 0
Given a method like this:
void sillyLitleTestMethod(double x) {
// do something
}
Will this method call...
sillyLitleTestMethod(1);
... be slower than this?
sillyLitleTestMetho...
http://www.experts-exchange.com/Programming/Languages/Java/Q_20082770.html
Zones:
JavaDate Answered: 02/26/2001 Grade: A Views: 4
how do I get the string value of a int or a long, dubble
and how do you handle the errors that might occure.
Thanks
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20162003.html
Zones:
C++Date Answered: 08/05/2001 Grade: B Views: 0