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 your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

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 7792 - 7823 of 8807   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
7792
Very intresting please note that header files are supposed to contain information which is essential for "compilation" of program, so please let us know why...
abhishek misra
abhishekfish...
Offline Send Email
Nov 1, 2006
9:35 am
7793
Dear friends I need codes regarding "Mouse programming" in C or C++. Please mail me if you do have one. Thanks. From Rishabh Mehta ... Find out what India is...
Rishabh Mehta
mehta_r13
Offline Send Email
Nov 1, 2006
5:46 pm
7794
... <snip> ... <snip> By taking one look at this code I would say the cause of your trouble might be that you're using float variables. Switch to doubles, this...
Nico Heinze
nico_heinze
Offline Send Email
Nov 1, 2006
5:56 pm
7795
Dear , There is no standard API in c or c++ for handling mouse events, So you must use your own Operating System API for theses. What is your OS the we will...
Abdulla Alwabel
aalwabel
Offline Send Email
Nov 1, 2006
6:48 pm
7797
Hello Rishabh, What do you mean by "Mouse Programming" ??? are you going to write device driver for mouse or want to just handle mouse in your program . And...
rabinarayan biswal
baappi
Offline Send Email
Nov 5, 2006
9:05 pm
7798
Thanks for your help...I changed "float" to "double" and the version that did not run, did run and produce correct results. However, I don't understand why...
emoglotz
Offline Send Email
Nov 5, 2006
9:10 pm
7799
iam very happy for this group ... We have the perfect Group for you. Check out the handy changes to Yahoo! Groups....
toto gad
marmarcat88
Offline Send Email
Nov 5, 2006
9:10 pm
7800
#include<iostream.h> void main(){ int size1;size2;**p; int *p1=new int [size1]; int *p2=new int [size2]; cin>>size1; cin>>size2; for(int i=0;i<size1;i++) { ...
marmarcat88
Offline Send Email
Nov 5, 2006
9:11 pm
7801
http://m68hc11.serveftp.org/doc/cpp_2.html#SEC10 ... which is essential for "compilation" of program, so please let us know why you believe that it may be...
maja_palra
Offline Send Email
Nov 5, 2006
9:12 pm
7802
... You don't initialise size1 or size2. ... How big are you expecting these arrays to be? ... No error checking. ... Even less error checkiung. ... Why are...
Paul Herring
Shabble
Offline Send Email
Nov 6, 2006
10:07 am
7803
... That's talking about a compile time directive. If you want a different set of headers included, you need to change some #defines and recompile. -- PJH ...
Paul Herring
Shabble
Offline Send Email
Nov 6, 2006
10:39 am
7804
Hi All, Can anyone there pls explain me the meaning of return in C/C++ programming? Plus can u also pls explain me the following program, esp. the meaning of...
tusharika2001
Offline Send Email
Nov 7, 2006
9:15 pm
7805
Hi, Ques : Can anyone there pls explain me the meaning of return in C/C++ programming? Plus can u also pls explain me the following program, esp. the meaning...
rabinarayan biswal
baappi
Offline Send Email
Nov 8, 2006
7:30 pm
7806
Thank you so much. This is what I needed.Have a Blessed Day! rabinarayan biswal <baappi@...> wrote: Hi, Ques : Can anyone there pls explain...
Wont Tell :-P
tusharika2001
Offline Send Email
Nov 9, 2006
6:17 pm
7807
this is o pointer.. so we can return it in a function ... -- The history of the world is the history of few men who had faith in themselves......
nishant mandilwar
nishant_mand...
Offline Send Email
Nov 9, 2006
6:17 pm
7808
hi there r basically three types to get out from a function 1. exit-- which returns to the o/s with some cleaning up, operations in the buffer. 2. _exit --...
nishant mandilwar
nishant_mand...
Offline Send Email
Nov 9, 2006
6:19 pm
7809
Hi Friends, I have three requirements. As I am not a C/C++ expert, I am finding initial difficulty to guess how to go about these three tasks. Kindly help with...
debaditya_ghosh
Offline Send Email
Nov 9, 2006
6:24 pm
7810
... DYNAMIC.CPP #include<stdio.h> #include<conio.h> #include<stdlib.h> void main() { int **arrint; int i,size,no,j; int noofrows; clrscr(); printf("Enter the...
Franklin
crazy_snny
Offline Send Email
Nov 12, 2006
10:30 pm
7811
Thank u so much.Have a Blessed Day. nishant mandilwar <nishant.mandilwar@...> wrote: hi there r basically three types to get out from a...
Wont Tell :-P
tusharika2001
Offline Send Email
Nov 12, 2006
10:33 pm
7812
High........ I am Franklin.I am in Msc Comp Sci 2nd year. I a doing a project in C.I want to search a file on a hard disk right at the start of my project.I am...
Franklin
crazy_snny
Offline Send Email
Nov 12, 2006
10:34 pm
7813
Hi I'm interested in learning to write programmes and was hoping I could find some good advice on places to start. I read somewhere that C programming was...
acce1er4te
Offline Send Email
Nov 12, 2006
10:34 pm
7814
Hi, If you need to use the file deletion operation reursivly, you can write code for it by using C/C++ standard library funcions. you can get many functions...
rabinarayan biswal
baappi
Offline Send Email
Nov 12, 2006
10:36 pm
7815
... DYNAMIC.CPP #include<stdio.h> #include<conio.h> #include<stdlib.h> void main() { int **arrint; int i,size,no,j; int noofrows; clrscr(); printf("Enter the...
Franklin
crazy_snny
Offline Send Email
Nov 12, 2006
10:44 pm
7816
Nishant ji,Thanks. nishant mandilwar <nishant.mandilwar@...> wrote: this is o pointer.. so we can return it in a function On 11/8/06, rabinarayan biswal...
Wont Tell :-P
tusharika2001
Offline Send Email
Nov 12, 2006
10:44 pm
7817
... <snip> ... <snip> Wonderful example how NOT to write a C/C++ program for several reasons: 1) the code is NOT portable; it works solely under Turbo C++...
Nico Heinze
nico_heinze
Offline Send Email
Nov 13, 2006
5:33 am
7818
... if u have good understanding... go for... The C Programming Language else as a beginner u can choose a good local author(Preferably a reputed one)... Best...
Bhanu Patial
bhanupatial
Offline Send Email
Nov 17, 2006
5:46 am
7820
hi can anybody tell me how to write program in C++ for reading and writing Stereolithography (stl) CAD data file. thanks and regards ... Find out what India is...
ravindra sarade
ravi129_2003
Offline Send Email
Nov 22, 2006
7:45 pm
7821
Hiii.I am doing Msc2(Comp Sci) from Somaiya College.I am doing a project in C.At the start of my project I want to check whether the Floppy drive or Cd Rom...
Franklin
crazy_snny
Offline Send Email
Nov 22, 2006
7:51 pm
7822
... Hi Franklin, we could respond faster and better if you provided more details about your environment. For example, your message sounds as if you're working...
Nico Heinze
nico_heinze
Offline Send Email
Nov 26, 2006
7:40 pm
7823
... I would also contend that you should avoid using scanf() all together (use fgets()). Try running your program and entering in 'q' instead of a number....
Don
madwhit
Offline Send Email
Nov 27, 2006
7:22 pm
Messages 7792 - 7823 of 8807   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