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...
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 7107 - 7136 of 9109   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
7107
File : C++CodingStandard.pdf Description : Learn C++ Coding Standard to write readable, portable, maintainable, consistent C++ code....
c4swimmers@yahoogroup...
Send Email
Jan 1, 2007
2:11 pm
7108
File : C Tutorials(advanced).zip Description : C tutorial(advanced)...
c4swimmers@yahoogroup...
Send Email
Jan 1, 2007
2:11 pm
7109
File : C_Aptitude.doc Description : Know C Better...
c4swimmers@yahoogroup...
Send Email
Jan 1, 2007
2:11 pm
7110
Pointers Varieties ************************************************************************************************* (1) int *p; // p is a pointer to an...
c4swimmers@yahoogroup...
Send Email
Jan 1, 2007
2:11 pm
7111
File : IndustryCodingStandardCC++.pdf Description : Learn how to write C/C++ code according to the industry requirements (MISRA rules)...
c4swimmers@yahoogroup...
Send Email
Jan 1, 2007
2:11 pm
7112
File : CLinks+TSRs+GDTips+101InterviewTips.zip Description : 101 Interview Questions,C Links,GD Tips,TSR...
c4swimmers@yahoogroup...
Send Email
Jan 1, 2007
2:11 pm
7113
File : c4s.zip Description : Animated(Graphical) C Tutorial...
c4swimmers@yahoogroup...
Send Email
Jan 1, 2007
2:11 pm
7114
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
Jan 1, 2007
2:11 pm
7115
(MUST READ: IMPORTANT) Group Rules ********************************* * Subscription & Unsubscription * ********************************* How to Subscribe to...
c4swimmers@yahoogroup...
Send Email
Jan 1, 2007
2:11 pm
7116
gud work... ... ********************************************************************** ... to a character returns an ... to a character returns a ... a pointer...
bil_n1
Offline Send Email
Jan 2, 2007
7:22 am
7117
Hi All, We now invite Embedded Skills around the globe for an excellent job opportunity in Singapore for our client which is a leading statutory body. Due to...
Rajesh R
rajesh.recru...
Offline Send Email
Jan 2, 2007
5:34 pm
7118
Hi All, I have some openings for C++ candidate in my company BarcoElectronics systems pvt. ltd. for product development team. Minimum exp required: 3+yrs in...
manish kumar
manish_kvrm
Offline Send Email
Jan 3, 2007
5:30 am
7119
Hi, Hey these are not the types of pointers. i have studied that integer pointer,far pointer are the some of pointers.plz confirm it first. Regards, Maria...
susai maria
susai_maria2001
Offline Send Email
Jan 3, 2007
5:31 am
7120
HI.friends....... I have attenedded an interview recently.They had asked me to write a programm to compute addition of two number using bitwise...
venkata ramana rao ka...
ramana288
Offline Send Email
Jan 3, 2007
6:28 pm
7121
... u can use sqrt but u have to include math.h for it also while compiling u have to do gcc filename -lm...
abhishek_brnwl
Offline Send Email
Jan 3, 2007
6:33 pm
7122
Hi, The program shown below is to count the number of one in any given number. when i scan any number from keyboard i am getting ./a.out enter the number 23 ...
p vikas
vikas_4372003
Offline Send Email
Jan 3, 2007
6:35 pm
7123
Hi Ramana, Use "or" operator... ... [Non-text portions of this message have been removed]...
raghuram chary
salman_419
Offline Send Email
Jan 4, 2007
4:27 pm
7124
Bitwise Operators Trickies: (1) Add two numbers without using the '+' operator (2) Multiply two numbers without using the '*' operator (3) Decimal to Binary...
knnkishor
Offline Send Email
Jan 4, 2007
5:06 pm
7125
Hi guys, I have a doubt in linux scheduler. let say there are 10 process waiting in active array for the scheduler to be taken having different time slices. In...
raj uuu
rodyk4u
Offline Send Email
Jan 5, 2007
4:12 pm
7126
main() { for(; 0 ; ) printf("Hello"); }...
patrosir
Offline Send Email
Jan 5, 2007
4:14 pm
7127
Hi kishor, for the 2nd problem the solution is #include<stdio.h> main() { unsigned int a ,b ,c = 0 ; int i = 0, j; printf("enter the numbers for which you want...
p vikas
vikas_4372003
Offline Send Email
Jan 5, 2007
4:17 pm
7128
Dear Group Members, We have some urgent requirements with our Client in USA. About Client: It’s a Fortune 25 top Software MNC with Multiple offices across...
Sanjay Thakur
gauravk_hr
Offline Send Email
Jan 5, 2007
4:17 pm
7129
for(;0;) Since condition is 0 = false it will no go into loop. This is perfectly valid code as initialization and increment parts are optional in for syntax. ...
Ashish Patil
aadipa
Offline Send Email
Jan 6, 2007
6:36 am
7130
#include<stdio.h> main() { int a=20,b=10; a=a+b; b=a-b; a=a-b; printf("a=%d b= %d",a,b); } nithya radha <nisha12_82003@...> wrote: hi, can anyone tell...
preethi lakshmi
indumaha1
Offline Send Email
Jan 6, 2007
6:36 am
7131
This is the case they call starvation in Operating System courses. The process will wait till the CPU has nothing else to do. The real problem is: that CPU...
Anas Mesrah
anas_mesrah_...
Offline Send Email
Jan 6, 2007
6:37 am
7132
ven u use XOR(^)some nums get added some nums get subracted.... 5^5=>0 1^2=>3 knnkishor <knnkishor@...> wrote: Bitwise Operators Trickies: (1) Add two...
richie rvs
richie_rvs
Offline Send Email
Jan 8, 2007
2:01 am
7133
Any turbo compiler compiles both C and C++ programs then how does it differenciate bet the conventions used in both the languages. eg: in C prog declarations...
ajinkyakale_86
Offline Send Email
Jan 8, 2007
2:03 am
7134
#include<stdio.h> int main() { unsigned int NumA,NumB,Carry=0, BitIndex=0, SumABC=0, ABC=0; unsigned int TNumA, TNumB; scanf("%d %d", &TNumA, &TNumB); ...
Hitesh Saxena
hiteshsdc
Offline Send Email
Jan 9, 2007
6:09 am
7135
sir i want this programme code * ** *** ****...
amir zaman
azaman234@...
Send Email
Jan 9, 2007
6:11 am
7136
HI NITHYA RADHA.... The code provided by preethi is absolutely works well and I would like to tell another solution too,which works faster than this.......if u...
venkata ramana rao ka...
ramana288
Offline Send Email
Jan 9, 2007
6:11 am
Messages 7107 - 7136 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