Search the web
Sign In
New User? Sign Up
c4swimmers · India's First C/C++ Programming Portal
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

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 8845 - 8874 of 9109   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
8845
File : C++CodingStandard.pdf Description : Learn C++ Coding Standard to write readable, portable, maintainable, consistent C++ code....
c4swimmers@yahoogroup...
Send Email
Feb 1, 2009
10:36 am
8846
File : C Tutorials(advanced).zip Description : C tutorial(advanced)...
c4swimmers@yahoogroup...
Send Email
Feb 1, 2009
10:36 am
8847
File : CLinks+TSRs+GDTips+101InterviewTips.zip Description : 101 Interview Questions,C Links,GD Tips,TSR...
c4swimmers@yahoogroup...
Send Email
Feb 1, 2009
10:36 am
8848
(MUST READ: IMPORTANT) Group Rules ********************************* * Subscription & Unsubscription * ********************************* How to Subscribe to...
c4swimmers@yahoogroup...
Send Email
Feb 1, 2009
10:36 am
8849
Pointers Varieties ************************************************************************************************* (1) int *p; // p is a pointer to an...
c4swimmers@yahoogroup...
Send Email
Feb 1, 2009
10:36 am
8850
File : IndustryCodingStandardCC++.pdf Description : Learn how to write C/C++ code according to the industry requirements (MISRA rules)...
c4swimmers@yahoogroup...
Send Email
Feb 1, 2009
10:36 am
8851
File : C_Aptitude.doc Description : Know C Better...
c4swimmers@yahoogroup...
Send Email
Feb 1, 2009
10:36 am
8852
Hi C/C++ enthusiasts Who am I: C For Swimmers - India's First C/C++ Programming Portal Where am I: www.c4swimmers.net What we do: Discover the depth of C Who...
c4swimmers@yahoogroup...
Send Email
Feb 1, 2009
10:36 am
8853
File : c4s.zip Description : Animated(Graphical) C Tutorial...
c4swimmers@yahoogroup...
Send Email
Feb 1, 2009
10:36 am
8854
Hello Developers.. Sun TechDays 2009, is giving 50% discount to Indijava.in Members.. The fee for Indijava.in group members is only Rs.1000 (instead of 2000) -...
Indijava.in
rahul_bnd
Offline Send Email
Feb 6, 2009
4:21 pm
8855
hi guys, can u tell me that from which header file this function belongs?? ""Cin.get"" ""cin.getline"" wat does this funtion performs???? Plz tell me quickly...
ali_tallal2003
Offline Send Email
Feb 7, 2009
2:48 pm
8856
Hi all experts! I'm facing a problem regarding getting characters one by one from the string array and then assigning to another array. Please help me ...
sg_nrb
Offline Send Email
Feb 7, 2009
4:03 pm
8857
Hi How are u all? I m student of MSCS and I want to add image and animated movie into C. Can I do this in C if any one have solution in his/her mind please...
khurramchowdhry
Offline Send Email
Feb 7, 2009
5:35 pm
8858
(MUST READ: IMPORTANT) Group Rules ********************************* * Subscription & Unsubscription * ********************************* How to Subscribe to...
c4swimmers@yahoogroup...
Send Email
Feb 8, 2009
10:04 am
8859
Hi C/C++ enthusiasts Who am I: C For Swimmers - India's First C/C++ Programming Portal Where am I: www.c4swimmers.net What we do: Discover the depth of C Who...
c4swimmers@yahoogroup...
Send Email
Feb 8, 2009
10:04 am
8860
Hi, I have an executable which wn executed gives a prompt. if we give a table name it will get information of that table from DB and shows it on stdout I want...
raj uuu
rodyk4u
Offline Send Email
Feb 9, 2009
4:03 pm
8861
hi... check this out!!! cin.getline(char *buffer, int length) Reads characters into the string buffer, stopping when (a) it has read length-1 characters or (b)...
raj uuu
rodyk4u
Offline Send Email
Feb 9, 2009
4:05 pm
8862
This should give you a seg fault in Linux and an exception in Windows. You have to allocate memory for the temp, which is a pointer. The address which is there...
abhijit dutta
abhi_want
Offline Send Email
Feb 9, 2009
4:07 pm
8863
the header file can be "iomanip.h" ... [Non-text portions of this message have been removed]...
sushant jain
jain.sushant02@...
Send Email
Feb 9, 2009
4:07 pm
8864
... You do not want to do a getch() to get the characters. They already exist in the character array. And you also said you want to stop at ... temp[i] = '\0';...
Rick
thefirstrepa...
Offline Send Email
Feb 9, 2009
4:08 pm
8865
If you want to keep *Hellow *only , then why you are keeping *n *in the for loop ? Either put *6 *or place a check for space ' ', and store the characters...
Prasanta Panja
ppit1_2000
Offline Send Email
Feb 9, 2009
4:09 pm
8866
... From: sg_nrb <sg_nrb@...> Subject: [c4swimmers.net] Help Me Plz To: c4swimmers@yahoogroups.com Date: Saturday, 7 February, 2009, 7:47 PM Hi all...
anoop negi
anoop_negi2010
Offline Send Email
Feb 9, 2009
4:10 pm
8867
-> close stdout(close()) -> open the file you want to redirect to. get it's file descriptor. -> Use dup2() function to duplicate your file's file descriptor...
srinivas g
srini_g2003
Offline Send Email
Feb 10, 2009
4:52 pm
8868
Use the Ostream object associated with a file and write to it. You should get some help from Visual studio help. ... From: raj uuu <rodyk4u@...> Subject:...
abhijit dutta
abhi_want
Offline Send Email
Feb 10, 2009
4:53 pm
8869
#include <stdio.h> #include <conio.h> #include <string.h> #include <stdlib.h> void main() {  int i,n;  char name[] = "Hellow how are you";  char ch, *temp; ...
sri niketan
niketan_srini
Offline Send Email
Feb 10, 2009
4:53 pm
8870
Hi All, I have seen many function names as func$test () and its a valid function name. Can any one tell me the importance of declaring the function names in...
Mallik
hi_malli2k3
Offline Send Email
Feb 12, 2009
3:30 pm
8871
  getline and all similar function are member function of ios class of  iostream header file. Ther acessed with the help of cin because,cin is a object of...
ambarish kulkarni
ambarish_22
Offline Send Email
Feb 15, 2009
9:37 am
8872
________________________________ Designation Team Member/ Team Lead Job Description Job Location: Chennai 3+ years of experience developing software, Strong &...
shachi shukla
shachishukla25
Offline Send Email
Feb 19, 2009
3:10 pm
8873
We currently have multiple openings for C/C++ developers in the NOVA/DC Metro area which are posted on our website. please feel free to either email me a copy...
lilbirdman3
Offline Send Email
Feb 19, 2009
3:11 pm
8874
One correction... Here temp is declare as a pointer so it doesnt contain memory in itself. either you have to allocate the memory through malloc or declare it...
Saket Agrawal
saketagrawal_1
Offline Send Email
Feb 22, 2009
8:44 am
Messages 8845 - 8874 of 9109   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