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 5591 - 5620 of 9109   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
5591
(MUST READ: IMPORTANT) Group Rules ********************************* * Subscription & Unsubscription * ********************************* How to Subscribe to...
c4swimmers@yahoogroup...
Send Email
Jan 1, 2006
7:40 pm
5592
File : C Tutorials(advanced).zip Description : C tutorial(advanced)...
c4swimmers@yahoogroup...
Send Email
Jan 1, 2006
11:21 pm
5593
File : C++CodingStandard.pdf Description : Learn C++ Coding Standard to write readable, portable, maintainable, consistent C++ code....
c4swimmers@yahoogroup...
Send Email
Jan 1, 2006
11:21 pm
5594
File : C_Aptitude.doc Description : Know C Better...
c4swimmers@yahoogroup...
Send Email
Jan 1, 2006
11:22 pm
5595
File : CLinks+TSRs+GDTips+101InterviewTips.zip Description : 101 Interview Questions,C Links,GD Tips,TSR...
c4swimmers@yahoogroup...
Send Email
Jan 1, 2006
11:22 pm
5596
(MUST READ: IMPORTANT) Group Rules ********************************* * Subscription & Unsubscription * ********************************* How to Subscribe to...
c4swimmers@yahoogroup...
Send Email
Jan 1, 2006
11:22 pm
5597
File : IndustryCodingStandardCC++.pdf Description : Learn how to write C/C++ code according to the industry requirements (MISRA rules)...
c4swimmers@yahoogroup...
Send Email
Jan 1, 2006
11:22 pm
5598
Pointers Varieties ************************************************************************************************* (1) int *p; // p is a pointer to an...
c4swimmers@yahoogroup...
Send Email
Jan 1, 2006
11:22 pm
5599
File : c4s.zip Description : Animated(Graphical) C Tutorial...
c4swimmers@yahoogroup...
Send Email
Jan 1, 2006
11:22 pm
5600
Wishing you all a New Year filled with good health, new hope and new beginnings! May year 2006 open up for you more opportunities, lead you onto the path of...
knnkishor
Offline Send Email
Jan 2, 2006
7:01 am
5601
Wishing you all a New Year filled with good health, new hope and new beginnings! May year 2006 open up for you more opportunities, lead you onto the path of...
rao appa
rank515@...
Send Email
Jan 2, 2006
9:16 am
5602
Hi Sudhir, 1. We can check the endianess of the system by using the below program #include<stdio.h> union { int i; char c; }name; int main(){ name x; x.i=10; ...
harish yarlagadda
harish1_yarl...
Offline Send Email
Jan 3, 2006
5:32 am
5603
Hi Ravinder, The discussion of including the stdio.h depends upon the compiler what we are using. if we are using the GCC on Linux then we can use the printf...
harish yarlagadda
harish1_yarl...
Offline Send Email
Jan 3, 2006
5:32 am
5604
1) Intel cpu is little endian and motorola cpu is big endian.when i run the below piece of code for getting endianness,i got as output "It is big endian" in...
raju kumar
rajuec111
Offline Send Email
Jan 3, 2006
9:06 am
5605
Hi Birasanna, here in this case ab is not the structure identifier. it is the name of the structure (i.e) ab is the structure itself which contains the three...
harish yarlagadda
harish1_yarl...
Offline Send Email
Jan 3, 2006
9:07 am
5606
Hi Sumit, we can have the virtual distructors in C++. but we can not have the virtual constructors. why because while constructing we have to construct the...
harish yarlagadda
harish1_yarl...
Offline Send Email
Jan 3, 2006
9:07 am
5607
Hi Mahesh, First of all wishing you a very Happy new year.Your idea of writing cross compiler is very good.The doubt which you had about the availability of...
Mohan Uppaluri
mohanuppaluri
Offline Send Email
Jan 3, 2006
9:09 am
5608
Dear all, I want to know if we can do graphics in C-program in Linux? I wanted to generate a circle through the program. Thanks in advance regards Anwar ... ...
Mohammad Anwaruddin
anwar_m414
Offline Send Email
Jan 3, 2006
12:04 pm
5609
Hi Guys, Wish you a very happy new year !! I am facing a minor problem in converting string to BCD ; For example input could be "777" and output shld be : 0111...
smitha choudry
rush2smitha
Offline Send Email
Jan 3, 2006
12:05 pm
5610
Hi Raju, in the before programs what i had given there are simple mistakes.here i had given the modified programs taking off the errors. 1. We can check the...
harish yarlagadda
harish1_yarl...
Offline Send Email
Jan 3, 2006
12:05 pm
5611
Hi all, Happy new year... First it is necessary to understand why virtual function is necessary. Class Base { Public: Base(); ~Base(); virtual void show(); }; ...
Raju Ghosh
ghoshraju_m
Offline Send Email
Jan 3, 2006
12:08 pm
5612
... program ... case ... What if: 1) sizeof(int) == sizeof(char)? or 2) the system is middle endian? ... sizeof operator ... (int*)p); ... This will always...
lenson
lenson18
Offline Send Email
Jan 5, 2006
4:47 am
5613
Hi, Here are the correct programs(modified): 1: #include <stdio.h> typedef union { int i; char c; }name; int main() { name x; x.i = 1; if(x.c == 1) ...
Vijai
vijai_58
Offline Send Email
Jan 5, 2006
4:47 am
5614
Hi This code can solve ur problem. #include<stdio.h> #include<string.h> main() { char i = 0 ; char s[] = "432"; char arr[][5]= ...
Ravindran P (RBIN/EDI2)
Ravindran.P@...
Send Email
Jan 5, 2006
4:47 am
5615
You can use curses library. Curses provides graphics api. With that u can draw core graphics objects like circle, line, rect, etc... Include header files,...
M, Ravindar
rm185061@...
Send Email
Jan 5, 2006
4:48 am
5616
Freshers of 2005 and 2006 please send ur resumes to premkumar_npk@... as soon as possiable. An recruitment drive is going on in TESCO through referral....
manohar
chakry1234
Offline Send Email
Jan 5, 2006
4:49 am
5617
Hi smitha, the problem in your code was u r initialising the array with 444.that 4,4,4 are not the decimal 4,4,4. they are the ascii values 4,4,4. which mean...
harish yarlagadda
harish1_yarl...
Offline Send Email
Jan 5, 2006
4:50 am
5618
we have another solution for distinguish the endians. short i; i = 1; if(i == htons(i))//network byte order is big endian printf("big endian\n"); else ...
ukishore
ukishore@...
Send Email
Jan 5, 2006
4:50 am
5619
Hi Rajesh, So you are currently working for 8051 based project fine.As you have asked me about the book i.e Embedded C by Michael j.Pont ,fine that is a good...
Mohan Uppaluri
mohanuppaluri
Offline Send Email
Jan 5, 2006
7:35 am
5620
hi mohan, Iam Rajesh, iam presently working on a 8051 uc based project,can u plz tell me which book i have to follow for embedded c,And i heard a book name...
ursraj babu
ursrajb
Offline Send Email
Jan 5, 2006
7:36 am
Messages 5591 - 5620 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