(MUST READ: IMPORTANT) Group Rules ********************************* * Subscription & Unsubscription * ********************************* How to Subscribe to...
c4swimmers@yahoogroup...
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...
Jan 1, 2006 11:22 pm
5598
Pointers Varieties ************************************************************************************************* (1) int *p; // p is a pointer to an...
c4swimmers@yahoogroup...
Jan 1, 2006 11:22 pm
5599
File : c4s.zip Description : Animated(Graphical) C Tutorial...
c4swimmers@yahoogroup...
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...
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@...
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; ...
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...
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...
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...
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...
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...
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 ... ...
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...
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...
Hi all, Happy new year... First it is necessary to understand why virtual function is necessary. Class Base { Public: Base(); ~Base(); virtual void show(); }; ...
... program ... case ... What if: 1) sizeof(int) == sizeof(char)? or 2) the system is middle endian? ... sizeof operator ... (int*)p); ... This will always...
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) ...
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@...
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@...
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....
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...
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@...
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...
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...