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.
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 55604 - 55633 of 71514   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
55604
*please find the answer below * ** #include <stdio.h> int main() { struct test { int i; struct test *d; }d1, d2; d1.i = 666; d2.i = 777; d1.d = &d2; d2.d =...
rakesh uv
uvrakesh
Offline Send Email
Jun 1, 2006
8:25 am
55605
Hi, i've started using VC++ EXPRESS EDITION 2005 and as im new to this, im havin a few basic doubts in it! 1) Do i have to go for a "new project" for each and...
T Sri Harsha
sriharrsha
Offline Send Email
Jun 1, 2006
8:47 am
55606
hai harsha , open the toll click new .u will get a new page ,click save give the name ,start writing a program ,then build execute .it will do every thing for...
rakesh uv
uvrakesh
Offline Send Email
Jun 1, 2006
8:53 am
55607
This 2 question r very common question for Interview Early binding happend before compile time ie before program run complier select perticular function call (...
SubrataPal
pal.subrata
Offline Send Email
Jun 1, 2006
9:12 am
55608
Any recommandation on graphics programming in the unix environment ? (preferably portable code)...
Vaida Bogdan
bug_g_hy
Offline Send Email
Jun 1, 2006
10:29 am
55609
... Just because he says that it is his emergency, doesn't mean that he is also saying it is an emergency to anyone else....
Jim Dougherty
j_dougherty@...
Send Email
Jun 1, 2006
11:57 am
55610
... No for you definition, no for your example. Early binding happens at compile time, not before. Most normal functions use early binding. Whether the ...
Ray Devore
rbdevore2007
Offline Send Email
Jun 1, 2006
12:26 pm
55611
I want to ask if I can from the run time of the main program browse the computer for including a number of files of type .txt and .html from a selected folder...
dina
dina_abdel_r...
Offline Send Email
Jun 1, 2006
12:34 pm
55612
... Concur with Victor's read on this. I recreated your code and put the seed at the beginning of setBox and I got a different pattern for each run. Ray ... ...
Ray Devore
rbdevore2007
Offline Send Email
Jun 1, 2006
12:46 pm
55613
... Changing only the return type will not cause function overloading, since the overloaded function is selected by the compiler based on the arguments being...
Ray Devore
rbdevore2007
Offline Send Email
Jun 1, 2006
12:46 pm
55614
... yes, in this case "program" and "project" are the same. ... Why don't you open an empty project, then there no code in the .cpp file and no requirement to...
Victor A. Wagner Jr.
vawjr1943
Offline Send Email
Jun 1, 2006
12:54 pm
55615
Hi rakesh! Thanks for the response. But, whats that "toll"...did u mean "tools"..."tools doesnt have any "new" option!!...plz dont mind, im really new and jus...
T Sri Harsha
sriharrsha
Offline Send Email
Jun 1, 2006
1:06 pm
55616
Yes you can but you have to use system calls for that and it is specific to operating system. You can't do it in pure C++ or C. It needs os API. Check windows...
Niklaus
temper_3243
Offline Send Email
Jun 1, 2006
1:06 pm
55617
... What compiler are you using? Using the Win32 API (under Visual C++ or DevC++), you would use FindFirstFile() to search a directory for a file, followed by...
Brett W. McCoy
smartandkewl
Online Now Send Email
Jun 1, 2006
1:10 pm
55618
hi i am new to linux they say it is opensource how to find the source codes of the software used for example how to find the source code of function printf and...
R.Subramanian
subu22_nov
Offline Send Email
Jun 1, 2006
1:23 pm
55619
... Your Linux distribution should provide the source code for just about everything or at least provide information on where to find it. Source packages are...
Brett W. McCoy
smartandkewl
Online Now Send Email
Jun 1, 2006
1:41 pm
55620
HI, Any simpler ways than this other than using standard c++ or C. #include<iostream> #include<algorithm> #include<string> using namespace std; bool...
Niklaus
temper_3243
Offline Send Email
Jun 1, 2006
1:42 pm
55621
printf and other functions are defined in glibc , you have to download source of glibc and view it through vi or cat or less or pico. better google glibc...
Niklaus
temper_3243
Offline Send Email
Jun 1, 2006
1:43 pm
55622
I've skimmed through the links but I already acquired some knowledge of C++/OOP and what I need now would be assignment/solution tutorials (which I could...
Vaida Bogdan
bug_g_hy
Offline Send Email
Jun 1, 2006
1:47 pm
55623
... -- ... elements ... (or ... custom ... either ... indicates. ... I ... In ... kindness ... #include<stdio.h> #include<string.h> void main() { char...
ayumi_yanzi
Offline Send Email
Jun 1, 2006
1:50 pm
55624
... how abt.. int ipow(int x,int i) { static int j; if( j < (i-1) ) { ++j; x=x*ipow(x,i); } --j; return x; } regards, reddy ... Be a chatter box. Enjoy free...
Lion
thiz_lion_king
Offline Send Email
Jun 1, 2006
1:54 pm
55625
... I see multiple problems: 1) Your function is non-reentrant. 2) You don't initialize 'j' anywhere. 3) You use recursion - a completely unnecessary and...
Thomas Hruska
shininglightpro
Offline Send Email
Jun 1, 2006
4:54 pm
55626
Thanks colleagues Victor and Ray, Yes, you were right about initially seeding the rand mechanism. Although my code was, in fact, being executed. It didn't...
David Lacasa
airapp
Offline Send Email
Jun 1, 2006
5:03 pm
55627
... If you already know the data in advance, why bother sorting at all? Just print out the solution. -- Thomas Hruska CubicleSoft President Ph: 517-803-4197 ...
Thomas Hruska
shininglightpro
Offline Send Email
Jun 1, 2006
5:09 pm
55628
... After learning the basics, the best way to learn more is to put those skills to use and write your own programs. Think of something you need and then DO...
Thomas Hruska
shininglightpro
Offline Send Email
Jun 1, 2006
5:24 pm
55629
... A number of Windows compilers include POSIX opendir(), closedir(), etc. Write code once with these functions, run it almost everywhere :) -- Thomas Hruska ...
Thomas Hruska
shininglightpro
Offline Send Email
Jun 1, 2006
5:24 pm
55630
hii all group members, i have a query that how can i play mp3 file using c language. You would write a program. Emphasis on YOU. <rant> We're glad to help you...
Kerry Thompson
kthompson666
Offline Send Email
Jun 1, 2006
5:26 pm
55631
... See c-prog's Links section. There is a section dedicated to portable GUI and graphics libraries. -- Thomas Hruska CubicleSoft President Ph: 517-803-4197 ...
Thomas Hruska
shininglightpro
Offline Send Email
Jun 1, 2006
5:28 pm
55632
I bough this AI for games book. It shows a structure with various parameters and functions. I won't list the whole thing here because I don't thinks thats...
mr_gees100_peas
Offline Send Email
Jun 1, 2006
5:57 pm
55633
Howdy all, I wrote : #include<stdio.h> #include<stdlib.h> int main(void) { const char* s="C Language"; printf("%d",atoi(s)); return 0; } to get only '0' as...
gowri sankar
gowsan_eeegct
Offline Send Email
Jun 1, 2006
8:17 pm
Messages 55604 - 55633 of 71514   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