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...
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 7007 - 7036 of 9109   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
7007
File : C Tutorials(advanced).zip Description : C tutorial(advanced)...
c4swimmers@yahoogroup...
Send Email
Dec 1, 2006
11:33 am
7008
File : C++CodingStandard.pdf Description : Learn C++ Coding Standard to write readable, portable, maintainable, consistent C++ code....
c4swimmers@yahoogroup...
Send Email
Dec 1, 2006
11:33 am
7009
File : CLinks+TSRs+GDTips+101InterviewTips.zip Description : 101 Interview Questions,C Links,GD Tips,TSR...
c4swimmers@yahoogroup...
Send Email
Dec 1, 2006
11:33 am
7010
File : IndustryCodingStandardCC++.pdf Description : Learn how to write C/C++ code according to the industry requirements (MISRA rules)...
c4swimmers@yahoogroup...
Send Email
Dec 1, 2006
11:33 am
7011
File : C_Aptitude.doc Description : Know C Better...
c4swimmers@yahoogroup...
Send Email
Dec 1, 2006
11:33 am
7012
(MUST READ: IMPORTANT) Group Rules ********************************* * Subscription & Unsubscription * ********************************* How to Subscribe to...
c4swimmers@yahoogroup...
Send Email
Dec 1, 2006
11:33 am
7013
Pointers Varieties ************************************************************************************************* (1) int *p; // p is a pointer to an...
c4swimmers@yahoogroup...
Send Email
Dec 1, 2006
11:33 am
7014
File : c4s.zip Description : Animated(Graphical) C Tutorial...
c4swimmers@yahoogroup...
Send Email
Dec 1, 2006
11:33 am
7015
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
Dec 1, 2006
11:33 am
7016
hi everybody, my question is...i allocated for example 500 bytes by using a malloc and assigned to a pointer. Now my actual question is i send this pointer to...
amar srinu
seenu0104
Offline Send Email
Dec 2, 2006
6:20 am
7017
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
Dec 3, 2006
10:31 am
7018
(MUST READ: IMPORTANT) Group Rules ********************************* * Subscription & Unsubscription * ********************************* How to Subscribe to...
c4swimmers@yahoogroup...
Send Email
Dec 3, 2006
10:31 am
7019
Hi, Here is a small program which can swap any data type. Just wanted to get some opinions from members. If there are any better ideas please give your...
Seran S
seranmca
Offline Send Email
Dec 5, 2006
4:47 am
7020
Dear Group Members, There is an urgent requirements for our clients in USA for networking and C++/VC++ professionals If you feel you or any of your friends is...
Sanjay Thakur
gauravk_hr
Offline Send Email
Dec 5, 2006
4:36 pm
7021
hi seran, This code looks big and complex. Here is the simple code for that #define swap(type,a,b) { type t=a;a=b;b=t;} main() { int a=2,b=3; float...
p vikas
vikas_4372003
Offline Send Email
Dec 5, 2006
4:37 pm
7022
good 1 !!!!! Seran S <seranmca@...> wrote: Hi, Here is a small program which can swap any data type. Just wanted to get some opinions from...
VISHAL NAHAR
naharvishalj@...
Send Email
Dec 5, 2006
4:39 pm
7023
Hi, This is not possible. You need to pass another argument containing its length. Thanks, Mrinmoy ... bytes by using a malloc and assigned to a pointer. Now...
Mrinmoy Ghosh
mrinmoy_g
Offline Send Email
Dec 5, 2006
4:42 pm
7024
There is no generic way to do it.. But usually, malloc stores the no. of bytes it allocated, one word before the pointer returned to you. eg, this program will...
srinivas g
srini_g2003
Offline Send Email
Dec 5, 2006
4:42 pm
7025
Hi, In my opinion you are correct to some extent only. Because I think your code is not going to work for character arrays. For e.g. char szBuff1[]="Abhi"; ...
abhijit dutta
abhi_want
Offline Send Email
Dec 7, 2006
4:23 am
7026
hey can u explain me the concept of pipes in unix and a small example too...which will make it clear!! thanks! sonal...
kadamsonal9_99
Offline Send Email
Dec 7, 2006
4:26 am
7027
Hi Abhi, you are right. Vikas. abhijit dutta <abhi_want@...> wrote: Hi, In my opinion you are correct to some extent only. Because I think your code is...
p vikas
vikas_4372003
Offline Send Email
Dec 7, 2006
3:39 pm
7028
significance of Null directive ?? FYI - The null preprocessor directive is a single number sign (#) alone on a line. It has no effect. Is it a portable code ??...
knnkishor
Offline Send Email
Dec 7, 2006
4:49 pm
7029
Code should throw compiler error on specific conditions Consider the following code snippet: #include<stdio.h> int main() { printf("Hello World!"); return 0; }...
knnkishor
Offline Send Email
Dec 7, 2006
4:49 pm
7030
(3-8 years exp) Prayogashala requires C/C++ Professionals http://c4swimmers.net/portal/C_Cpp_job_Prayogshala...
knnkishor
Offline Send Email
Dec 7, 2006
5:34 pm
7031
hai everybody i came to know that we can write a c programme without main() i.e actually we can make the execution start from the function name we desire by...
cva_3891
Offline Send Email
Dec 7, 2006
6:13 pm
7032
I think this link would serve you .......... http://c-faq.com/null/index.html Thanks and Regards, Jyothi Swaroop. ... [Non-text portions of this message have...
Jyothi Swaroop
jyothiswaroo...
Offline Send Email
Dec 8, 2006
5:53 am
7033
Just removing the header file should generate a error when compiled with g++, as there won't be a declaration for printf function. ... [Non-text portions of...
srinivas g
srini_g2003
Offline Send Email
Dec 8, 2006
11:47 am
7034
Hi All, We now invite Onsite to Japan around the globe for an excellent job opportunity in Japan for our client which is a leading statutory body. Due to the...
Sumi Panicker
sumi.jobs
Offline Send Email
Dec 10, 2006
10:12 am
7035
hi sonal, pipes in unix is used for inter process communication. this is a unidirectional way of communication. look at the following example. main() { int...
siddhardha gudivada
siddhardhagu...
Offline Send Email
Dec 10, 2006
10:13 am
7036
!! H1B NEW / TRANSFERS !! H1B New Application/Transfers is now being accepted by us for the following professionals for 2007 filing:- # SAP # ORACLE...
eci
eci_indya
Offline Send Email
Dec 10, 2006
10:13 am
Messages 7007 - 7036 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