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...
Ya I agree with Mayur. Pravin: Plz specify what APIs r u using in ur prog? Cheers! Amit...
Amit Prakash Bhatt
amitprakashbhatt@...
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@...
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 ??? ...
Hi, #include <stdio.h> int main() { if(!printf("Hello")) { printf("Hello"); } else { printf(" World"); } } This will give the desired output Thanks, Mrinmoy...
Hi this program will give u desired output void main() { if(!printf("hello")) { printf("Hello"); } else { printf(" World"); } } as printf() returns no of...
Dear friend, I suggest you to kindly enter your details in the group's database. Its available at the following link... ...
Programmers-Town@yaho...
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 ...
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...
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...
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...
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...
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...
Jul 3, 2005 1:16 pm
7861
File : Annoncement.doc Description : Plan for Programmers-town.edu...
Programmers-Town@yaho...
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. ...
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...
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...
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,...
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...
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; }...
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...
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...
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...
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...
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...
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 ...
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...