Search the web
Sign In
New User? Sign Up
c-prog · C/C++ Programmer's Mailing List
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 30587 - 30616 of 67710   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
30587
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 .....
Anand
anandhci
Offline Send Email
Aug 1, 2003
7:38 am
30588
ptth://com.programmersheaven.www Thanks and Regards Suhredayan ... Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software...
suhredayan
Offline Send Email
Aug 1, 2003
7:46 am
30589
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...
suhredayan
Offline Send Email
Aug 1, 2003
12:10 pm
30590
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...
Recruitment Bureau
rbureau2003
Offline Send Email
Aug 1, 2003
1:27 pm
30591
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...
Blue Bird Tharun
tharun_aptech
Offline Send Email
Aug 1, 2003
2:30 pm
30592
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...
Shyan Lam
sflam108
Offline Send Email
Aug 1, 2003
2:44 pm
30593
Search google for "packed unpacked string" (without the quotes). I got lots of hits. Ray ... _________________________________________________________________ ...
Ray Devore
rdevore2007
Offline Send Email
Aug 1, 2003
3:14 pm
30594
I don't see any "indirection operator" anywhere in your sample code ... Victor A. Wagner Jr. http://rudbek.com The five most dangerous words in the...
Victor A. Wagner, Jr.
vawjr1943
Offline Send Email
Aug 1, 2003
3:16 pm
30595
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...
Ray Devore
rdevore2007
Offline Send Email
Aug 1, 2003
3:30 pm
30596
... 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...
benjamin1441
Offline Send Email
Aug 1, 2003
3:36 pm
30597
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...
serhan_bg
Offline Send Email
Aug 1, 2003
8:57 pm
30598
See reply embedded... ... ^^^^^^ main() should returns int. ... ^^^^ ^^^^ Avoid using magic number like this. What if you want to change it to...
Shyan Lam
sflam108
Offline Send Email
Aug 1, 2003
9:34 pm
30599
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...
Juliana Lewis
juliana_lewis
Offline Send Email
Aug 1, 2003
9:51 pm
30600
Templates are handled by the compiler not the preprocessor. The preprocessor handles preprocessor statements (those that begin with #). Ray ... ...
Ray Devore
rdevore2007
Offline Send Email
Aug 2, 2003
3:40 am
30601
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...
TSO .
se_3rdsemester
Offline Send Email
Aug 2, 2003
3:54 am
30602
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...
TSO .
se_3rdsemester
Offline Send Email
Aug 2, 2003
4:09 am
30603
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...
Recruitment Bureau
rbureau2003
Offline Send Email
Aug 2, 2003
10:42 am
30604
... 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 *...
Recruitment Bureau
rbureau2003
Offline Send Email
Aug 2, 2003
10:42 am
30605
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...
kishoramit
Offline Send Email
Aug 2, 2003
11:05 am
30606
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
herrgenius
Offline Send Email
Aug 2, 2003
11:05 am
30607
In searching google, I found that the concept of a packed string is putting multiple strings in a single char array. See:...
Ray Devore
rdevore2007
Offline Send Email
Aug 2, 2003
11:27 am
30608
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...
Ray Devore
rdevore2007
Offline Send Email
Aug 2, 2003
11:36 am
30609
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...
Ray Devore
rdevore2007
Offline Send Email
Aug 2, 2003
12:05 pm
30610
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...
Rayne
wu_weidong
Offline Send Email
Aug 2, 2003
12:38 pm
30611
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...
needhelp07981
Offline Send Email
Aug 2, 2003
3:49 pm
30612
#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...
herrcho
herrgenius
Offline Send Email
Aug 2, 2003
3:50 pm
30613
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...
Tamas Marki
tamas_m
Offline Send Email
Aug 2, 2003
4:10 pm
30614
while posting messages, if I want to attach files, How can I do it...
mdawood_259
Offline Send Email
Aug 3, 2003
1:33 am
30615
just to test #include <iostream.h> #include <stdlib.h> int main() { for(char ch = 0;ch<=126;ch++) cout<<"int value of char "<<ch<<" in decimal is...
Dawood Vora
mdawood_259
Offline Send Email
Aug 3, 2003
1:38 am
30616
From: Ray Devore [mailto:rdevore2007@...] ... No. It is implementation defined whether or not the sign bit is propagated when right shifting negative...
Peter Nilsson
peternilsson42
Offline Send Email
Aug 3, 2003
2:02 am
Messages 30587 - 30616 of 67710   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help