you said that it's without using main. but u r using main here.how is that? ... Hi Nitin Good work. This is what I expected. This tricky is to make aware of ...
Hey buddy ! should look at complete conversation... see this ... #define M m##a##i##n void M() ... is the prg using main() anywhere ??? No.. that is the...
Hi I want to in which way we connect database in C/C++ in window mode. If any one plz mail the coding of this problem. Rajesh ... Still single? Click here to...
Rajesh Padihary
rajeshpadihary@...
Jun 1, 2004 7:56 am
820
Hi Buddies !! look at the peace of code !! ======================== #include<stdio.h> class a { // int as; char x; char z; char zz; //short int y; int bcd; ...
Hi Swimmers, You can't have a program without main. Its impossible. For example if u want to call or invoke a function in any other module or context u need to...
hi all, few days ago a solution to the very simple problem was sent to the group. the problem was ,to print 1-100 without using loop and the solution posted...
ratnesh jha
j_ratnesh@...
Jun 1, 2004 8:54 am
823
There was a detailed mail from Sandeep Kowshik a few days ago on this issue. Maybe you could go through it. -- Lenson suresh n <sre_sh@...> 2004-06-01...
hi, see Gautham's logic is correct .even in TC it will work properly if u make the return type of main() as int and put return 1 inside main function. ... ...
ratnesh jha
j_ratnesh@...
Jun 1, 2004 9:25 am
825
any body tell me that can we call constructor explicitly yes I know that it implicitly call whenever object created but I want to call it explicitly...
Conecuser
conecusr@...
Jun 1, 2004 11:15 am
826
as we know that we allocate like char *a; a=new char[60]; ... delete a; but how system know that using delete command we have to delete 60 char ... From:...
Conecuser
conecusr@...
Jun 1, 2004 11:21 am
827
Dear Friends, I 've tried to call the static function thru #pragma directive. But it displays the error msg as "Undefined symbol fun". whats the prob? Is it...
Prabhu D.L
dlprabhu@...
Jun 1, 2004 12:09 pm
828
Hi buddy .. NEW is like malloc in c. it allocates memory from a place called "Free store" at runtime and will return a pointer, which will hav the starting...
R u sure that "Startup" is an valid pragma...??? whr hav u come acrosss it??? i think it is not a pragma... ... From: Prabhu D.L To: c4swimmers@yahoogroups.com...
Dear Friend, Pls go thru the following code #include <stdio.h> void fun(); #pragma startup fun 64 void fun() { printf("Hai"); } void main() { printf("V R IN...
Prabhu D.L
dlprabhu@...
Jun 1, 2004 12:41 pm
831
Here is the technique class A { public: A() { printf("HERE\n"); } A(int a) { printf("THERE\n"); } }; int main() { A a = A(); A a1 = A(10); return 0; } ...
DOES IT PRINTING "Hai"..?????????? CHK OUT .... ... From: Prabhu D.L To: c4swimmers@yahoogroups.com Sent: Tuesday, June 01, 2004 6:10 PM Subject: Re:...
Hey ratnesh, It's a simple recursion wherein the main itself is called in the For loop. The function is recursively called till all the conditions are met At...
Vadivel.Raja@...
Jun 1, 2004 12:55 pm
834
Dear frenz plz help me out if anybody have idea abt.. C++ explicit casts....
one thing more because i is declared as static its value persist between recursive call to main(). Thanks and Best Regards, Adil Mujeeb ... From:...
Adil Mujeeb, Noida
adilm@...
Jun 1, 2004 1:06 pm
836
dear this is implicit way I want any way to call constructor function forcely ................ thanks for effort ... From: Rajeev Dev To:...
Conecuser
conecusr@...
Jun 1, 2004 1:11 pm
837
Hi Please fill your details in the Database section - c4swimmers table of the groups homepage. Yours eSmartGuy Nanda Kishor Vistech Information Systems Pvt Ltd...
File : 7HabitsOfEffectiveC++.pdf Description : 7 habits of effective C++ programming...
c4swimmers@yahoogroup...
Jun 1, 2004 5:03 pm
839
File : C Tutorials(advanced).zip Description : C tutorial(advanced)...
c4swimmers@yahoogroup...
Jun 1, 2004 5:03 pm
840
File : C++CodingStandard.pdf Description : Learn C++ Coding Standard to write readable, portable, maintainable, consistent C++ code....
c4swimmers@yahoogroup...
Jun 1, 2004 5:03 pm
841
Pointers Varieties ************************************************************************************************* (1) int *p; // p is a pointer to an...