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...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 2719 - 2748 of 8327   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2719
hi,<br> prepend a % if u want a literal %.<br>Like this :<br>printf("%%\n");<br>printf("%%d\n");<br><br>hope this helps u!<br>uday....
itsruk
Offline Send Email
Feb 1, 2002
10:36 am
2720
Hey, <br><br>it is more clear,<br><br>printf("printf(\"%%d\", x++)\n"); <br><br>output -&gt; printf("%d", x++)<br><br>I found this technique last...
f_x_dx
Offline Send Email
Feb 1, 2002
5:06 pm
2721
This program should work and do all the things that you want it to do:<br><br># include &lt;stdio.h&gt;<br><br>void main(){<br><br> char a= '%';<br><br> printf...
miscomp
Offline Send Email
Feb 1, 2002
8:59 pm
2722
Hi! I new to C++ can anyone recommend any good beginner books. Where can I get a free compiler?...
teenage_hippie
Offline Send Email
Feb 3, 2002
12:43 am
2723
Hey<br><br>A book that we are using at college that covers all the basics, and of all the books that I have read, this is a basic, yet powerful book ...
f_x_dx
Offline Send Email
Feb 3, 2002
8:55 pm
2724
I'm triing to take arguments from the command line and asign them to one char pointer. for example, <br><br>./myprog one two three ...
bnyec
Offline Send Email
Feb 3, 2002
11:40 pm
2725
Think of this as a problem of ownership. You own your pointer, but the operating system owns the memory where the strings are stored. You may or may not have ...
bates320
Offline Send Email
Feb 4, 2002
12:45 am
2726
ok, that makes sense, and that works much better ;) , thanks. I havent played with this yet, but One more question, say i want to <br>copy var1 , var2 ... ...
bnyec
Offline Send Email
Feb 4, 2002
1:26 am
2727
Here are two solutions. (They should work, but I haven't tried either of them.)<br><br>The first one is derivd from your code. It uses the strcat() function to...
bates320
Offline Send Email
Feb 4, 2002
10:49 am
2728
Whoops! I left out the...<br><br>int i;<br><br>--Tom...
bates320
Offline Send Email
Feb 4, 2002
10:51 am
2729
&gt;...but One more question, say i want to <br>copy var1 , var2 ... var100 into that same pointer<br>using a while() or for() loop.&lt;<br><br>There is one ...
oldcootfromVA
Offline Send Email
Feb 4, 2002
5:08 pm
2730
I used to have a piece oc c code that compiled fine. I am using a new compiler, and get the follwing error message:<br><br> warning: unknown escape sequence ...
kabir_patel
Offline Send Email
Feb 5, 2002
10:09 am
2731
You are right, the meaning is obscure. It doesn't make any sense to me, but then, I am assuming that the definition of stream_FND_Resevoir_ctl...
bates320
Offline Send Email
Feb 5, 2002
12:31 pm
2732
&gt;fprintf(stream_FND_Resevoir_ctl, "\)\n"); <br><br>I do not fully understand this (I didn't write the code).<br><br>Can somebody tell me:<br>a) What "\)\n"...
oldcootfromVA
Offline Send Email
Feb 5, 2002
6:55 pm
2733
Try go to www.bloodshed.net/devcpp.html it's come with a text editor.<br>you're welcome...
sweemeng2002
Offline Send Email
Feb 6, 2002
5:23 pm
2734
Anyone out there know about a tool, or some source code that can be used to track through header file dependancies in large C projects automatically? i.e....
rykkerd
Offline Send Email
Feb 6, 2002
5:32 pm
2735
www.sources.redhat.com download SourceNavigator and use it...
jreidthompson
Offline Send Email
Feb 7, 2002
4:04 am
2736
I try that link and didn't work....
xx_elitewhiteghost_xx
xx_elitewhit...
Offline Send Email
Feb 7, 2002
5:04 pm
2737
The one true code browser!<br><br><a href=http://www.scitools.com/ target=new>http://www.scitools.com/</a><br><br>Their understand tool is worth paying the...
jeffjhayes
Offline Send Email
Feb 7, 2002
9:10 pm
2738
try doing a search for a .ocx that implements a COM port connection. Some of the better ones include modem commands. Mind you, this means that you will be ...
jeffjhayes
Offline Send Email
Feb 7, 2002
9:15 pm
2739
Just started my first C class. Having a problem with the output of gross pay. The output is nothing that makes sense, it's the same number regardless of what...
lernim
Offline Send Email
Feb 8, 2002
1:07 am
2740
im a new person too, but i still think i see your problem. if im wrong anyone, feel free to fix what i say<br><br>the line:<br>float wage, hours, gross = wage...
arbeiter54901
Offline Send Email
Feb 8, 2002
3:21 am
2741
Great work! It worked. Thank you. I didn't see it as I was trying to head all my variables and assignments on top, however that didn't pan out with the correct...
lernim
Offline Send Email
Feb 8, 2002
11:14 am
2742
i need help in this assignment, pls.<br><br>--<br><br>One of the more interesting puzzlers for chess buffs in the knight's tour problem, originally proposed by...
rav_fan
Offline Send Email
Feb 8, 2002
4:50 pm
2743
Another one is Source Insight: [<a href=http://www.sourcedyn.com] target=new>http://www.sourcedyn.com]</a><br><br>Its v good - and free trial version is...
pauldotg
Offline Send Email
Feb 9, 2002
5:33 am
2744
I am currently working on a Computeach 'C' programming course and I would be interested if anyone else is doing the same....
skyrocket46
Offline Send Email
Feb 11, 2002
12:21 am
2745
i am presently learning c programming and am having trouble on quite a few assignments.<br>my first question is what function can be used if i want to reverse ...
tracy2377ca
Offline Send Email
Feb 11, 2002
2:03 am
2746
normally, you would start the program, post what you have, and then ask people to help troubleshoot your code. Nobody here wants to do your homework for you....
biffsocko
Offline Send Email
Feb 11, 2002
4:22 pm
2747
Hello everyone, I hope someone can help...I have no formal training in computers but I would like to become competent in writing programs in C. I got the ...
the_beeftomato
Offline Send Email
Feb 18, 2002
6:05 pm
2748
I'm no master by any means at C or C++, but if you wanna develop graphic programs I would learn the fundamentals of C and then move on to concentrating on C++,...
compsciguy78
Offline Send Email
Feb 18, 2002
11:19 pm
Messages 2719 - 2748 of 8327   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help