Note: forwarded message attached. ... Do you Yahoo!? The New Yahoo! Shopping - with improved product search Hi Friends This is Nanda Kishor here. Download "C...
Hi guys, I have doubts in some questions of C,plz help me out to solve them. void main() { printf("%d"+0,123); } (a)123 (b)Compile-Time Error (c)No Output ...
Hello Khushi, printf("%dabc"+0,123); will give the result as 123abc printf("%dabc"+1,123); will give the result as dabc printf("%dabc"+2,123); will give the...
Sreejith K(STP)
sreejith@...
Nov 5, 2003 8:04 am
8
Can I known the answer for this and also logic void main() { printf("\/\*\-*\/"); } (a)Run-Time Error (b)\/*-*\/ (c)/*-*/ (d)None of these ANS - \/*-*\/ - wat...
Umesh Muniramaiah
umesh.muniramaiah@...
Nov 5, 2003 9:05 am
9
Hai Umesh, Which compiler are you using. When I compiled the program using Turbo C++ printf("\/\*\-*\/"); gave the result as /*-*/ That is because '\' is an...
Sreejith K(STP)
sreejith@...
Nov 5, 2003 9:23 am
10
Umesh, The logic for this is that the symbol \ is used as an escape sequence like
if u want to print a new line char u say \n which prints a new line and a...
Hi Ram Mohan, I think answer will be c option. Because blach slash is used as escape sequence it will not print I think. Thanks, Umesh ... From: Ram Mohan S...
Umesh Muniramaiah
umesh.muniramaiah@...
Nov 5, 2003 9:38 am
12
so finally u understood and gave the right answer.. -SRM. ... From: c4swimmers@yahoogroups.com Date: Wednesday, November 05, 2003 03:41:17 PM To:...
Hi Khushi Solutions for ur queries are given below : Your Query void main() { printf("\/\*\-*\/"); } (a)Run-Time Error (b)\/*-*\/ (c)/*-*/ (d)None of these ...
FRM where do i get the answers of infrequently asked questions. Also a request do not send a file as attachement unless it is toooooo big. bcoz yahoo groups...
Hello Can anyone explain why and how the outputs of these programs are obtained. [Q018] What will be the output of the following program : void main() { int...
Sreejith K(STP)
sreejithk@...
Nov 6, 2003 5:19 am
16
please let me know the solutions of the questions ... Do you Yahoo!? Protect your identity with Yahoo! Mail AddressGuard...
Hi Ranga, U have not attached any document or there is no link Can u please send the link or the document Thanks, Umesh ... From: Ranganathan...
Umesh Muniramaiah
umesh.muniramaiah@...
Nov 10, 2003 2:48 pm
20
Hello frds, I think u did not get me. I said i have uploaded the file in the Files Section. To access that go to yahoo groups website and then click the files...
Hi, please go to http://www.faqs.org/faqs/C-faq/ for C questions and answers. There are some 5 links, go through all the links so that your C Aptitude will...
Enter your vote today! A new poll has been created for the c4swimmers group: How do you rate c4swimmers group? o * (poor) o * * (good) o * * * (average) o * *...
c4swimmers@yahoogroup...
Nov 11, 2003 12:30 am
23
Hello Ranganathan, I request you to please upload the solutions for 15 infrequently answered questions of your website. As your first message you sent it...
Dear Sir, Can u pls send the link where the FAQs are stored as i cannot open it in the mail which u had sent previously. Thanks & Regards, Lakshmi. ... Do you...
Lakshmi Jayaraman
luckshmiram@...
Nov 11, 2003 9:43 am
25
Hi Friends Please visit www.c4swimmers.esmartguy.com and signup the guestbook, then give ratings. Also Reference text books for C / C++ included. Yours Nanda...
Can u please send me a program to print first hundred number without using any of the relational operators. __________________________________ Do you Yahoo!? ...
yeah u have not used any relational operator wht i hv done is int a=100; main() { printf("%d",a); a--; a&&main(); } thank for replying. Ques: Interchange the...