Search the web
Sign In
New User? Sign Up
Programmers-Town
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1806 - 1835 of 12634   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1806
Dear friend, I suggest you to kindly enter your details in the group's database. Its available at the following link... ...
Programmers-Town@yaho...
Send Email
Jun 1, 2004
10:21 am
1807
use fgets which is safer coz it requires size of the ip buffer also!! ... From: Dorai Ashok [mailto:doraiashok1@...] Sent: Friday, May 28, 2004 3:50 PM...
Bhojani, Komel (IE03x)
Komel.Bhojani@...
Send Email
Jun 2, 2004
3:19 pm
1808
Hi all i have a question on micro. can i define 'comment' as micro?? if no then why?? #define comment "//" int main() { int a; printf(comment); } the output...
PRAVIN-KUMAR
d0353085@...
Send Email
Jun 2, 2004
3:20 pm
1809
If you do step by step debugging you will see the program control passing from function a() to function b(). Enjoy Nasir ... function ... information...
haque_nasir
Offline
Jun 2, 2004
3:20 pm
1810
I know sir, gets() is unsafe. and not recomended. but gets() gives warning in only gcc and cc as i know. if u r using turbo-c or any other it doesn't. can u...
PRAVIN-KUMAR
d0353085@...
Send Email
Jun 2, 2004
3:21 pm
1811
int i=4;j=21; i>=2?(j=5):(j=10); printf("%d",j); } now the ans is 10 main() { int i=4;j=21; i>=2?(j=5):j=10; printf("%d",j); } now it shows the error l value...
jayaraman narayanan
njraman007
Offline Send Email
Jun 2, 2004
3:23 pm
1812
... In turbo-c or other compilers, you don't get the warning but the working of gets() is the same. Just try the program below, you will understand clearly the...
Dorai Ashok
doraiashok1
Offline Send Email
Jun 2, 2004
3:24 pm
1813
explain abt these what is called as prototype? tell me! what is translation unit? what is type of linkages? global & fns can have several declaration but have...
jayaraman narayanan
njraman007
Offline Send Email
Jun 2, 2004
3:29 pm
1814
explain abt these what is called as prototype? tell me! what is translation unit? what is type of linkages? global & fns can have several declaration but have...
jayaraman narayanan
njraman007
Offline Send Email
Jun 2, 2004
3:30 pm
1815
Hi Friends, This is Mangesh from ZenSOFT Pvt Ltd, Pune. We, Intellectual Resource Centre (IRC), is a division of ZenSOFT Pvt. Ltd., provide the right match for...
Mangesh Tapre
mdthr03
Offline Send Email
Jun 2, 2004
3:30 pm
1816
hai, I am new to this group. I need a help. I am having a system with windows 2000 server loaded in it. I have installed oracle 8i in it. Now i want to work...
selva_be_1
Offline Send Email
Jun 2, 2004
3:33 pm
1817
Hi Everybody, I heard that call back functions are used to read messages asynchronously from the queue. Can Anyone explain me this with an example ? Thanks In...
greatraja sekar
greatraja_sekar
Offline Send Email
Jun 2, 2004
3:33 pm
1818
you can keep a global table or mapping between your function pointers and function names and check the same inside the function ... From: suman...
Dhiraj
dhiraj_bansa...
Offline Send Email
Jun 2, 2004
3:35 pm
1819
Hi Everybody, I found that callback function can be used in cases where we need to get information that an event has happenned asynchrounously. Can any one...
greatraja_sekar
Offline Send Email
Jun 2, 2004
3:36 pm
1820
hi guys recently one of my friends told me that char *p="hello"; char q[]="how are you"; char *p is stored in the data segment becoz char * is actually...
sandeep
santony98
Offline Send Email
Jun 2, 2004
3:36 pm
1821
Hi Pravin, I guess comment does not work this way becuase MACROS and comments are processed by C preprocessor and I guess this is done in such a way that all...
Kishor Ahuja
kishor_ahuja
Offline Send Email
Jun 3, 2004
9:05 am
1822
Friends, If you are/were geting too many mails, you can change your membership to one of the following. 1. Daily Digest : you l get only one mail per day (no...
Programmers-Town@yaho...
Send Email
Jun 6, 2004
10:21 am
1823
... PLZ DO FORWARD THIS MAIL TO ALL YOUR FRIENDS, GROUPS AND EVERY EMPLOYEE OF YOUR COMPANY (to Support C/C++ ),IT WONT TAKE YOUR MUCH TIME. THANKING YOU IN...
Programmers-Town@yaho...
Send Email
Jun 6, 2004
10:21 am
1824
Dear members , Our group's main motive is to sharing knowledge & experinces of each other, solving each others technical problem. Here We are REQUESTING you to...
Programmers-Town@yaho...
Send Email
Jun 6, 2004
10:21 am
1825
Basically an async call could be some thing like the below a(){ b(); .. continue processing instantaneously } b(){//Making the async call and returning...
Aravind VM
vmaravind
Offline Send Email
Jun 8, 2004
9:23 am
1826
Since '?:' has more prioriry than '=', the problem comes for the second exprn. main() { int i=4;j=21; i>=2?j=5:(j=10); ... 1. check i>=27 true then evaluate...
ranjith
ranjith@...
Send Email
Jun 8, 2004
9:23 am
1827
Check out the operator precedence and you will know how the compiler interprets it. The actual code should be (i>=2) ? (j=5) : (j=10); Sarvex Jatasra Software...
Sarvex Jatasra
sarvex@...
Send Email
Jun 8, 2004
9:23 am
1828
... try it: j= i>=2? 5:10;...
NoC
noc998
Offline Send Email
Jun 8, 2004
9:23 am
1829
Reply embedded. _____ From: sandeep [mailto:sandeepantony@...] Sent: Monday, May 31, 2004 1:32 AM To: Programmers-Town@yahoogroups.com Subject: (PT)...
Shyan Lam
sflam108
Offline Send Email
Jun 8, 2004
9:23 am
1830
Reply embedded... ... Macro simply does textual substitution. Whether it can be done or not depends on the results after substitution make sense to the...
Shyan Lam
sflam108
Offline Send Email
Jun 8, 2004
9:23 am
1831 Greatraja
greatraja_sekar
Offline Send Email
Jun 8, 2004
9:23 am
1832
dear group members , i didn't get m,ail for two days . is thre is any discussion going on love...
steephengeorge
steephengeorge@...
Send Email
Jun 8, 2004
9:23 am
1833
The warning is optional. When turbo C was popular, there isn't a wide spread of buffer overrun vulnerability issues like today, however, it doesn't meant...
Shyan Lam
sflam108
Offline Send Email
Jun 8, 2004
9:24 am
1834
A large Dubai based company seeks C & C++ System Programmer : Candidate must has 2-3 years programming experience on Banking POS terminals (credit card...
alnada02
Offline Send Email
Jun 8, 2004
9:24 am
1835
hi friends, I am having one doubt in structure pointer.in particular I am not clear about the offset concept which is used to find the address of a member...
Arun Kumar.V
arun_softtech
Offline Send Email
Jun 8, 2004
9:24 am
Messages 1806 - 1835 of 12634   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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