Dear kiran, Refer Unix System Programming by Stevens or any other book. Alter. go to http://engginfo2002.tripod.com web site. Browse to link V SEM ->...
Hi everybody, Itz very nice to share our knowledge and especially in C.I need a help from you know. Q.How can we compare two numbers without using comparison...
askar ali
askaralil@...
Dec 2, 2003 6:07 am
54
Hello all, Can anyone of you explain why and how the answer of this program comes like this. void main() { int i=10,j; j=++i + ++i; printf("%d",j); } The...
hi sreejith......... the unary operators are performed first in any expression........this is the base line......... as the 2 variables being i (which has only...
Hi Sreejith, In the cc complier which we run in UNIX m/c it is showing is 23. This cc compiler will add the value directly after the increment of the variable....
umesh.muniramaiah@...
Dec 2, 2003 2:12 pm
57
Hi Friends Invitation to participate in the C Code Contest From now onwards C Code Snippet Contest will be held. There are two categories (1) Best C Code...
Hello friends Help Me to Help You by contributing C stuff to the website. I'm Nanda Kishor. I'd like to include new topics to the www.c4swimmers.esmartguy.com....
see in line............... 1.what is the o/p & tell me the reason? void main() { int *a=NULL; a=(int *)malloc(10*sizeof(int)); printf("%d",sizeof(a)); } ...
Hello i wanred to tell one thing. I second answer u gave is wrong as i told the same answer for un interview and they said that i was wrong. Can any body tell...
HI <umesh.muniramaiah@, Can u say the output of bellow: main() { int i; printf("%d",3.0); printf("%d",5.88); } for first print i am getting 0 if i put any...
hi this is rahul for(int i=0;i<50;i++); ... In my opinion the second one will execute fast. Here goes the explanation see the semicolon in the end of each i...
hi this is rahul for(int i=0;i<50;i++); ... In my opinion the second one will execute fast. Here goes the explanation see the semicolon in the end of each i...
hey man ......... i get u........... ya u r right.....the ans i gave was wrong............ see this .................. actually the first loop will be done...
Hi, Can you help me by passing this info. 1.With using temporary variables how we can able to swap two values????? 2.With using arithmetis operator,how we can...
askar ali
askaralil@...
Dec 8, 2003 3:58 am
67
hi Askar i think u have missed out the "out" in u r question i mean without temp variables or without the arithmetic operator ...........if that is the case ...
we can check the wich no is greater without using relational operator like given below: if(a/b) { printf(a is greater"); } else { printf (b is greater) } if...
Hi Friends Challenge C4S#1 W.A.P. to display the string C4Swimmers. Constraints are as follows : DO NOT USE (1) ; (semicolon) (2) " (doublequote) and (3) the...
Hi, we can swap the variables using following techniques: 1) if a= 10; b=20; then a=a+b; b=a-b; a=a-b; 2)while Passing the values ,exachange the paramters and...
hi !! this is in regard to the Q : How we can swap 2 variables without using temp variable ?? Well the answer proposed : a=a+b; b=a-b; a=a-b; has a flaw ! The...
Tarandeep Uppal
singh_tarandeep@...
Dec 8, 2003 9:32 am
72
Without using arithmetic operator , by using right shift & left shift operator we can able to perform multiplication and division only for integarls of 2. For...
askar ali
askaralil@...
Dec 8, 2003 11:36 am
73
Hi, Using Right Shift op. Left Shift op. we can able to mutiply only for integrals of 2. Is there is any other to multiply and divide for other than integrals...
askar ali
askaralil@...
Dec 8, 2003 1:34 pm
74
Yahoo! India Mobile: Ringtones, Wallpapers, Picture Messages and more.Download now....
hi ! this is in regard to the Q : Using Right Shift op. & Left Shift op. we can mutiply only for integrals of 2. Is there is any other to multiply and divide...
Tarandeep Uppal
singh_tarandeep@...
Dec 9, 2003 8:56 am
76
Hi! could u tell me the solutions to this problem, 1.Why we r using the #include statement,basic thing i know but i need some actual processing while using...
Hi Friends Download the attachments : C Tips (50+ Pages) C++ Tips (50+ Pages) nJoy nanda kishor Regards, www.c4swimmers.esmartguy.com Designed & Maintained by ...
Great Quotes A girl should not expect special privileges because of her sex . . . she must learn to compete . . . not as a woman but as a human being. ...
Hello gautham This method fails when either a or b or both is 0 or a negative number. Also when a=b, this program fails to give a suitable output. I guess this...
hi thanx,for the refinement ,as i gave only the over all idea any way thnx "Sreejith K(STP)" <sreejithk@...> wrote: Hello gautham This method fails when...