hello!
the links first:
my original question - http://www.experts-exchange.com/Networking/Misc/Q_24763778.html
another question of importance - http://www.experts-exchange.com/Programming...
i am trying to get a buffer to check for a number (n1) when a piece (+) moves in a certain possition.
i have got the thing coded but its not liking what i have done.
i don't understand whe...
Hi all
I'm planning to use a Version control system as CVS or Subversion, to store code and delivery packages, using baselines.
The delivery package will store C programs and static librar...
Hey just a beginner here. I am looking at a question I have from a past exam where String s becomes the contents of file pointed to by fin. so s is ment to be whats in blank.txt(which is just ...
#include <stdio.h>
#include <stdlib.h>
int main( void )
{
unsigned x; /* variable to hold user input */
unsigned c; /* counter */
printf( "Enter an unsigned integer: " );...
Hi ALL ,
i am trying to achieve the following please help me ..
from my previous thread i got this for c++
http://www.experts-exchange.com/Programming/Languages/CPP/Q_24896082.html?ci...
The code works and encripts any text the problem is that i dont know how to make the desencription of the encripted text i dont know what am i doing wrong :(
Please help, and also comment o...
This pertains to a C / Motif application running on *nix.
Is it possible to change the # of rows in a XmRowColumnWidgetClass? Basically I'm creating the Widget initially based on a fixed # ...
can someone give me some good reference on explaining access regions in C++, public, private, and protected..
Hi,
I'm having compiling a program that uses a library which uses functions from another library.
In the code below the WiMaxCommonTestApp uses a primary lib called libxvi020.so which us...
Does any one have any idea how I could modify the following example to obtain the upper limit for the counter from the command line? i have to pass a parameter to the Createthread system call.
Hi,
I have a program (caller) that needs to interact with a DLL. I want to call the DLL to allocate memory for a structure and put some initial values in this structure and give the pointer...
Hi,
i have like this:
unsigned int a,b,c;
a=b/c
it works fine with signed int but when unsigned int, i am getting weird results..i wonder if it is something got to do with unsigned a...
Is there a way to figure out whether a domain name is already registered programmatically using C#?
if i write main like the following ways. Which one will compile and way?
1. char * main();
2. char * main(int, char);
3. char * main(char);
Can there be any predictable issues reading a file(text/binary) using an application developed in c++/c# which is written by an application developed in java code?
How can one solve the s...
Hi
I want code to simulate speed of network using C++.
Thanks,
subrat
Any ideas why C is waiting for keep-alive timeout (disconnection of socet) when reading last buffer? I mean i got this code:
while(SSL_read(ssl,bufr,1024)){
printf(bufr);
}
Si...
I want to create a function that keeps count of how many times its called. Only a static variable with external linkage would be the appropriate storage class for this, right? A static functio...
I'm refactoring some code, and I'm trying to squeeze three equal-length arrays into a matrix.
I'm getting very frustrated with this, because the below code fails it's assert once every hund...
I am trying to execute GetDllDirectory from kernel32.dll I can find the function in there, and call it, and the call is successful (caue GetLastError says so, but the returned search list is n...
Hi all
I need Win API to hash file(any file type).
Thanks,
Subrat
Hello,
Could anybody give me example of simple SSL client using socks in C?
-creates socket
-connects to ssl host
-sends some data
-revieces response
-closes socket
It has to be abl...
Convert the C code into MIPS:
I have problem converting this C code into MIPS. It would be great if I could have comments on the side so that I can understand what is done. Thanks:
#inc...
I use the following method to display a webpage (usually a help page) in my MDI WIN32 application using Visual Studio 6. When I compile my app with VS 2003 it compiles but no page is displaye...