Search the web
Sign In
New User? Sign Up
Programmers-Town
? 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.
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 7845 - 7874 of 12634   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
7845
Hi Its correct..it depends on what api are used .. But if the normal C++ functions are used to read and write the defined in iostream than the C++ will take...
Mayur Jain
mayurdjain
Offline Send Email
Jul 1, 2005
7:02 am
7846
Ya I agree with Mayur. Pravin: Plz specify what APIs r u using in ur prog? Cheers! Amit...
Amit Prakash Bhatt
amitprakashbhatt@...
Send Email
Jul 1, 2005
7:11 am
7847
i use same API in c and c++ only i convert my c structure in to c++ class then what happen Pravin ... test'; "> ...
bilhore pravin
ppb_2002@...
Send Email
Jul 1, 2005
7:49 am
7848
void main() { if(X) { printf("Hello"); } else { printf(" World"); } } O/p : Hello World what to be placed in the place of X inorder to get the above o/p ??? ...
shashikiran_83
Offline Send Email
Jul 1, 2005
9:04 am
7849
Hi, #include <stdio.h> int main() { if(!printf("Hello")) { printf("Hello"); } else { printf(" World"); } } This will give the desired output Thanks, Mrinmoy...
Mrinmoy Ghosh
mrinmoy_g
Offline Send Email
Jul 1, 2005
9:26 am
7850
Hi this program will give u desired output void main() { if(!printf("hello")) { printf("Hello"); } else { printf(" World"); } } as printf() returns no of...
praveen kumar
praveenkumar...
Offline Send Email
Jul 1, 2005
11:03 am
7851
Hi I require a C++ and assembly level based gaming project. Even if it is in non Windows environment, it is very much welcomed....
akhil_dass
Offline
Jul 1, 2005
12:50 pm
7852
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
Jul 1, 2005
1:24 pm
7853
A lot of engineering tutorials are available at http://www.geocities.com/kenney_jacob Send me the comments Kenney For nice SMS messages www.romanticsms.tk ...
Kenney Jacob
kenney_jacob
Offline Send Email
Jul 1, 2005
6:28 pm
7854
#include <stdio.h> int main(void) { if (!printf ("hello ")) printf ("hello"); else printf ("world"); return 0; } Pradyut <http://pradyut.tk> http://pradyut.tk ...
Pradyut Bhattacharya
program_pr
Offline Send Email
Jul 2, 2005
2:02 am
7855
Hi Greetings!!! I am looking for C++, VC++, MFC professionals for a leading CMM level 5 companies in Chennai Req : Skills : C, C++, VC++, MFC Exp : 3 to...
shrikanthgr
Offline Send Email
Jul 2, 2005
10:33 am
7856
Hi All.... Huawei is coming to my campus Next Week. I urgently need Huawei Technologies Placement Test Papers . Please do send me if u have the same. Thanking...
simran in
simran_jhansi
Offline Send Email
Jul 2, 2005
4:04 pm
7857
try this. http://www.freshersworld.com/papers/huawei/huawei1.htm -- When it's all over, it's not who you were...it's whether you made a difference....
Smruti Ranjan Mandal
smrutimandal
Offline Send Email
Jul 2, 2005
4:29 pm
7858
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
Jul 3, 2005
1:16 pm
7859
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
Jul 3, 2005
1:16 pm
7860
... PLEASE DO FORWARD THIS MAIL TO ALL YOUR FRIENDS, COLLEAGUE AND GROUPS (to Support C/C++ ), IT WILL NOT TAKE MUCH OF YOUR TIME, BUT CAN HELP US A LOT. ...
Programmers-Town@yaho...
Send Email
Jul 3, 2005
1:16 pm
7861
File : Annoncement.doc Description : Plan for Programmers-town.edu...
Programmers-Town@yaho...
Send Email
Jul 3, 2005
1:16 pm
7862
... PLEASE DO FORWARD THIS MAIL TO ALL YOUR FRIENDS, COLLEAGUE AND GROUPS (to Support C/C++ ), IT WILL NOT TAKE MUCH OF YOUR TIME, BUT CAN HELP US A LOT. ...
LILY C
punk1156
Offline Send Email
Jul 3, 2005
8:21 pm
7863
yes in place of X u write !printf("Hello").The code becomes : void main() { if(!printf("Hello")) { printf("Hello"); } else { printf(" World"); } } I hope u...
rajendra singh
rajendrasing...
Offline Send Email
Jul 4, 2005
4:10 am
7864
Hi Ajith, when we use realloc function then there is no gurantee that u will get the same starting address. Suppose that u have using calloc u have allocate...
sanjeev sharma
sanju_cse_mmmec
Offline Send Email
Jul 4, 2005
7:48 am
7865
Hi Its me Sekhar Here. Can any one send me some good notes on ESPLY AWK programming in Unix.with some program involving awk? SEKHAR ... Free antispam,...
sekhar barua
sekharbarua
Offline Send Email
Jul 4, 2005
9:47 am
7866
Hi All, Plz tell me why the below function is not swapping the values. void swap(int *a, int *b) { int *t = a; a = b; b = t; } if a = 10 , b = 20 if we call...
gururaj bo
guru_bo
Offline Send Email
Jul 4, 2005
2:43 pm
7867
you're dealing with pointers, so you must swap the value in the address, not the address itself. void swap(int *a, int *b) { int t= *a; *a = *b; *b = t; }...
Thiago Ferreira
kn1g
Offline Send Email
Jul 4, 2005
6:58 pm
7868
Hi In this case you are assigning the address of a to t so now a and t both are pointing to the same memory location. In the next statement you are changing...
Mayur Jain
mayurdjain
Offline Send Email
Jul 5, 2005
4:34 am
7869
Subject: Problem in linklist in C,C++ Compiler used: Turbo C++ ,version:3.0 Friends, I have made linklist consisting of around 300 nodes(structures) of each...
gaurav8272
Offline Send Email
Jul 5, 2005
9:05 am
7870
Hi Would you please post your code... Its very difficult to tell without seeing the code As you told each node is 217 bytes.. there should not be memory...
Mayur Jain
mayurdjain
Offline Send Email
Jul 5, 2005
9:11 am
7871
Thanks for your reply Mayur. I am attaching my code with some important input files and one output file(which shows the output of the program on the screen...
gaurav singh
gaurav8272
Offline Send Email
Jul 5, 2005
10:24 am
7872
Hi Gaurav, Will you please let me know some of the things 1] does the code crash every time after 300 nodes 2] Does it is repeating again and again 3] Is there...
Mayur Jain
mayurdjain
Offline Send Email
Jul 5, 2005
10:41 am
7873
Hi Gaurav, I tried and its giving me some error I am not able to run ur prog linklist.cpp(184) : error C2065: 'textbackground' : undeclared identifier ...
Mayur Jain
mayurdjain
Offline Send Email
Jul 5, 2005
10:47 am
7874
Hi All, How we can load a picture(of any type) that is stored in the disk, into any particular control of the dialog using Win32 SDK ? There are methods for...
sharad srivastava
sharad_chote
Offline Send Email
Jul 5, 2005
4:06 pm
Messages 7845 - 7874 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