Can any one of u tell me website or groups where i can find programming logics which is like .... find biggest of two no. without using condition statements .....
CASE 1: Critical section object allow both the threads to execute at the same time.But only one thread can access the blocking object at a time. CASE 2:When...
EXCITING CAREER!!! GOLDEN CHANCE WORK FROM HOME JOBS We Are An Excellent Resource For Legitimate Work at Home Jobs Work from Anywhere in India This Is An...
Requirement as follows I am forwarding the spec. for Unix,C,C++ requirements. Please note the mandatory skills.. a.. UNIX, C, C++, Windows, b.. "MAKE" usage...
This is one of the differences between C and C++. In C, you can freely assigned void* to and from any pointer type without typecasting. In C++, you have to use...
Search google for "packed unpacked string" (without the quotes). I got lots of hits. Ray ... _________________________________________________________________ ...
Any time you do multiple increments and/or decrements of the same variable in the same statement, the results are undefined. That is why the answers are...
... be ... Ok, can someone just tell me how it's ok to write BITMAPINFOHEADER without a void or int? I assume it's a prototype? But how can u write that...
I'm new in programming (learning C)and i will be pleased if someone makes my mind clear about that easy situation. Firstly i wanted to write a code which will...
Hi there, i m confused about a question, how to apply the shift operator to the signed numbers. like simply when we are using a shift operator on unsigned...
Yes you can Pass Variables by Reference and Variables as Pointer. When you use the Reference then it will save the Space and one variable is used for all. When...
it's all depends upon the nature of the Problem. if you want to make a program in c then you have to use the malloc and free function. but if you want to make...
EXCITING CAREER!!! GOLDEN CHANCE WORK FROM HOME JOBS We Are An Excellent Resource For Legitimate Work at Home Jobs Work from Anywhere in India This Is An...
... 5.90 points, 5.5 required; * -0.5 -- Appears to be from yahoo groups * 0.6 -- From: ends in numbers * 0.7 -- BODY: Something is emphatically guaranteed *...
i know what is packed and unpacked structure .....but packed and unpacked string ...no idea. i don't think .......there is something like this. -- Kishor...
Hi ~ i started to learn C a few weeks ago. and i hope i can get much help from this group. #include <stdio.h> main() { char name[50]; printf("Input a...
Herrcho, When you do: scanf("%s",name); scanf reads until it hits white space (space, tab, carriage return). Try gets instead, which reads to a carriage...
Juliana, When you have an unsigned int, the shift operator shifts all of the bits, and zero fills. When you have a signed int, the shift operator shifts all...
Hi, I need help with the program I'm writing. I written the whole thing, but it doesn't really work right, so I need someone to help me check my logic and...
How does COM differ from DCOM ? I know DCOM is distributed COM. That is, COM for a distributed environment. How does machine A know that machine B has the...
#include <stdio.h> main() { printf("%d %c\n",336,337); printf("%d %c\n",140); printf("%d %c\n",-1); } when i run this, the output is 336 Q 140 Q -1 Q i guess...
On Saturday, August 02, 2003 13:36:45, Ray Devore wrote: RD> When you do: RD> scanf("%s",name); RD> scanf reads until it hits white space (space, tab, carriage...
From: Ray Devore [mailto:rdevore2007@...] ... No. It is implementation defined whether or not the sign bit is propagated when right shifting negative...