Search the web
Sign In
New User? Sign Up
cprogramming2 · C Programming Turning caffeine into code
? 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 7497 - 7526 of 8809   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
7497
Guys I would like to ask you how to read line numbers in files that if i not only want to read all the words in a file but also the linenumber that each of the...
arvind_for_u2003
arvind_for_u...
Offline Send Email
Jun 4, 2006
6:34 am
7498
... <snip> First cross-posting without indicating so is a bad idea in general. I won't repeat here why. Second repeating your question twice won't make us more...
Nico Heinze
nico_heinze
Offline Send Email
Jun 4, 2006
7:49 am
7499
Hello Everyone Can someone give me C or C++ code (Turbo C++ 3.0) that can calculate products of two numbers x and y where both x and y are natural numbers ...
sagars_m
Offline Send Email
Jun 4, 2006
6:51 pm
7500
... Sagar, if you would have said, no more than app. 30,000 digits, I would have responded, no problem, just use the gmp library (Gnu Multiple Precision) as a...
Nico Heinze
nico_heinze
Offline Send Email
Jun 4, 2006
7:40 pm
7501
Thank you for replying to me. As you have pointed out, it is not possible to do that with Turbo C++. Is it possible under VC++ then? As for why I want to do...
sagars_m
Offline Send Email
Jun 4, 2006
7:46 pm
7502
Hi freinds. i need your help to write a program about *Karnaugh Map* with C++ language . please send me e-mail if you have it. thx alot....
karaneh_e_aseman
karaneh_e_as...
Offline Send Email
Jun 5, 2006
5:27 am
7503
Iam sorry guys my english is poor so couldnot type everything properly. What iam trying to do is iam trying to read a text file and trying to build an index on...
arvind_for_u2003
arvind_for_u...
Offline Send Email
Jun 5, 2006
5:28 am
7504
... It's up to you why you want to do it. I have not only asked for curiosity but also because knowing the exact circumstances (in particular the so-called...
Nico Heinze
nico_heinze
Offline Send Email
Jun 5, 2006
5:41 am
7505
... And what help do you need? Understanding what a Karnaugh map actually is? Designing the data structures and algorithms for it? Implementing the data...
Nico Heinze
nico_heinze
Offline Send Email
Jun 5, 2006
5:44 am
7506
... Now you've made yourself clearer. Thanks. Finding out a line number is easy: just count the lines while you are reading them. Set up the line counting...
Nico Heinze
nico_heinze
Offline Send Email
Jun 5, 2006
6:33 am
7507
Dear Nico, I am grateful for your interest in my doubt. Let me explain you what I need to do. I am basically working on a formula that can tell if a number is ...
sagars_m
Offline Send Email
Jun 5, 2006
9:57 am
7508
... <snip> ... First I would like to note that you probably mean something else. The first term in your equation is: [(2a + 2b/ / 2] which is the same as (2a /...
Nico Heinze
nico_heinze
Offline Send Email
Jun 5, 2006
10:15 am
7509
hi im studying in 12th class i want c++ project for my cbse exam plz if any one knows any site or has a c++ project mail to me at givemeabreak_hoo@... ...
givemeabreak_hoo
givemeabreak...
Offline Send Email
Jun 8, 2006
10:08 pm
7510
Hi,friends This is my project that I have to write it in c or c++ or any kind of object oriented languages . Below you can see the question ,please help me I...
mimi
top_angel2200
Offline Send Email
Jun 8, 2006
10:08 pm
7511
... <snip> Read Algorithms In C by Robert Sedgewick; the chapters about graph theory are really good. Adapt the sample code to C++ or whatever language you...
Nico Heinze
nico_heinze
Offline Send Email
Jun 8, 2006
11:41 pm
7512
hi guys watch out my program kbc-2 http://www.programmersheaven.com/zone3/cat1157/index.htm for all those who want projects etc in c++ mail me your response ...
chandra_chur_86
Offline Send Email
Jun 9, 2006
6:26 pm
7513
Free Software Books , Interview questions, placement papers I have listed free software books available online for C, C++, JAVA, XML,Database, Networking, .NET...
www_myitcareer_org
www_myitcare...
Offline Send Email
Jun 11, 2006
1:00 pm
7514
#include <stdio.h> main() { int c, nl; nl = 0; while ((c = getchar()) != EOF) if (c == '\n') ++nl; printf("%d\n", nl); } Hi, when i execute this program on...
sailorman2006
Offline Send Email
Jun 13, 2006
9:34 pm
7515
... (debugging) Perhaps you should print more than just a number in the printf? (printf("Lines counted: %d\n", nl); ... (more debugging) Print something in the...
Paul Herring
Shabble
Offline Send Email
Jun 13, 2006
11:25 pm
7516
... As far as I understand the program it will simply accept input until the end of input has been reached; only then will it print out the number of lines. ...
Nico Heinze
nico_heinze
Offline Send Email
Jun 14, 2006
5:02 am
7517
Ctrl D can still be used as EOF with bash.. as far as i know.. Nico Heinze <grollnar@...> wrote: --- In cprogramming2@yahoogroups.com, "Paul...
Lion
thiz_lion_king
Offline Send Email
Jun 14, 2006
7:02 pm
7518
Nico Heinze is correct; you won't see any output until the EOF character arrives. While you could just redirect the stream (as he suggests), you can also use...
deltalanguage
Offline
Jun 15, 2006
7:31 am
7519
Hi friends, Now a lotof new good tutorials are added in http://www.tutorialdownloads.com/index.html .....try Cheers, Priya ...
Priya Nambiar
priya_namb70
Offline Send Email
Jun 15, 2006
7:39 am
7520
Hello, I'm having some unexpected result while using void perror(const char *s) The man page reads as under routine perror() produces a message on the...
abhishek misra
abhishekfish...
Offline Send Email
Jun 16, 2006
7:36 am
7521
... <snip> ... To me it looks as if perror() is #define'd somewhere and meaning something completely different than what you (and I) would expect. Please check...
Nico Heinze
nico_heinze
Offline Send Email
Jun 16, 2006
9:28 am
7522
Get the free reference now.. ebooks link, freeware download, mobile stuff, usefull forum, some free hosting.. http://www.geocities.com/xenophobia_inc...
xenophobia_inc
Offline Send Email
Jun 16, 2006
9:31 am
7523
Thanks for everyone that answer my question i'm completely novice student whose age is 22 :) Best wishes....
sailorman2006
Offline Send Email
Jun 16, 2006
5:02 pm
7524
hi every one i wont to lern the ( c++ programming ) and i hop that your group will providing helpfull staf for me the iraqi hawkeye ... Do you Yahoo!? Get on...
omar izzat
gotoomar999
Offline Send Email
Jun 20, 2006
9:03 am
7525
Link for free stuff... http://geocities.com/xenophobia_inc/...
xenophobia_inc
Offline Send Email
Jun 22, 2006
7:18 pm
7526
please send the set of various problem or any chllenging code in c&c++. bcoz i am vary much bore in my vacation. can u send as an attachment like that. send me...
AMEYA BAPAT
ameya_bapat2003
Offline Send Email
Jun 26, 2006
5:28 pm
Messages 7497 - 7526 of 8809   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