Monday, May 24, 2010

C Exercises?

Can i get C Exercises on net?As i have completed till Nested if-else and loops and there is no sufficient problems available in the book, i m not able to practice well .Now i m searching for site where i can get some good C Exercise to built my basic learning ?





Can some tell me sites whihc provide Basic C Exercises and also tell some books which is exclusivly used for problem solving for basic C?





Thanks

C Exercises?
I feel you shd try some forum and yahoo groups.There you will get some good stuff .... and help too
Reply:Or else you may contact a C expert live at website like http://oktutorial.com/ .
Reply:The best way to get practise is to do the problems that people post right here.





Like this simple one I answered with recursion but you may want to try to rewrite it without recursion.


http://answers.yahoo.com/question/index;...


C-section moms?

I am due to have a c-section at 39 weeks. I am 35 weeks and 4 days right now. I went in two days ago with contractions every 3 min but I was only dialted to 1cm and stayed that way for a couple hours so they stoped the contractions with a shot. Ever sice that night I still have contractions and I have droped so much that everyone noticed. My question is do I go to the doctors again or do I wait until I am in complete active labor? I don't want the medication again and I don't want to wait so long that I have to have an emercency c-section. The nurse said at this point they will not try to stop active labor and if I was dialted more they would just do the c-section. My next appointment is 1 week away. I know normal births need to wait for contractions to be close and strong but for c-sections and early labor it is not the same.

C-section moms?
i would go to the doctor or to the hospital if i were you. i was1cm dilated then 5hrs later i was 7! i wasn't meant to have a c section but my baby turned transverse breech. if you are having a cesarean they would prefer your waters not to break. if its becoming active labour you must go to the hospital. it's better off to get checked out. i was 1 cm dilated for a week then it went full scale. they put you in if your in pain that you can't handle and if you can't sleep . i had a sleeping pill cause i did't sleep for a week. so it's better off they can keep an eye on you.
Reply:My friend was scheduled to have a c-section and actually her water broke and had to have the baby early! like almost 2 weeks! she was fine but was in NICU for a day.
Reply:If the contractions come and go (maybe for an hour each day), then I'd wait it out. However, if you've had contractions since then, I'd go in to get checked. Which is worse - getting a shot or having a problem with your child and creating an emergency situation since you didn't want to go in?


Besides, at 36 weeks, they don't stop labor and chances are your child will require minimal NICU time - lungs are totally fine by 36-37 weeks. So, if you're more dialated, it may just be your body's way of letting you know this baby is ready to be born.


(b-a)(c-a)(c-b)=what matrix?

(b-a)(c-a)(c-b)=1 1 1


a b c


a^2 b^2 c^2


prove this matrix

(b-a)(c-a)(c-b)=what matrix?
Ideas: Subtract the values of the first column from the second column and the third column, respectively.


So, the determinant


= (b-a)(c^2 - a^2) - (c-a)(b^2 - a^2)


= (b-a)(c-a)(c+a - b-a)


= (b-a)(c-a)(c-b)
Reply:I do not understand the question.


b-a=1


b=a


c-a=1


c=a


c-b=1


c=b


a=b=c=1


a b c = 1 1 1


a^2 b^2 c^2 = 1 1 1


So the Matrix is


1 1 1


1 1 1


1 1 1


Is this what you wanted to prove? The matrix should have 3 rows and 3 columns.

rose

Compatability between C/C++ compilers?

I'm wondering whether C source code can be compiled in a C++ compiler, or do you have to use a C compiler.





Also, does anyone have any recommendations on a good C compiler?


Thanks!!

Compatability between C/C++ compilers?
They are usually compatible if you stick to ANSI C/C++ coding. A good compile is the free gnu C/C++ compiler. This is a well documented stable compiler that runs on windows, linux etc..
Reply:I wrote numerous programs using Watcom C/C++, now free:





http://www.openwatcom.org/index.php/Main...





Most compile with .C and .CPP names.


Compatability between C/C++ compilers?

I'm wondering whether C source code can be compiled in a C++ compiler, or do you have to use a C compiler.





Also, does anyone have any recommendations on a good C compiler?


Thanks!!

Compatability between C/C++ compilers?
They are usually compatible if you stick to ANSI C/C++ coding. A good compile is the free gnu C/C++ compiler. This is a well documented stable compiler that runs on windows, linux etc..
Reply:I wrote numerous programs using Watcom C/C++, now free:





http://www.openwatcom.org/index.php/Main...





Most compile with .C and .CPP names.


The Circle C has the equation x^2 + y^2 - 12x + 8y +16 = 0?

a) Find the coordinates of the centre of C


b) Find the radius of C


c) Sketch C


Given that C crosses the x-axis at the points A and B


d) Find the length AB, giving your answer in the form K√5





Its the last question i'm stuck on for my homework, any help would be great :)

The Circle C has the equation x^2 + y^2 - 12x + 8y +16 = 0?
a) General equation of a circle can be expressed in


x^2 +y^2 +2gx+2fy +c = 0 with (-g,-f) as centre and


SQRT(g^2 + f^2 -c)


=%26gt; Hence the above equation can be transformed to


x^2 + y^2 + 2(-6)x + 2(4)y + 16 = 0 ,


i.e g = -6 , f = 4 , hence the centre of the above circle is (6,-4) .





b) Radius = SQRT(6^2 + (-4)^2 - 16)) = SQRT(36) = 6 Units





c) You can draw the Circle with (6,-4) as centre and 6 as radius on a coordinate axes.





d) For solving this , put y = 0 in the equation of the circle and solve for point A %26amp; B.





=%26gt; x^2 + 0^2 - 12x + 8x0 + 16 = 0


=%26gt; x^2 -12x + 16 = 0


Solving for x , you will get the coordinates for A and B as follows:A(6+2√5,0) and B(6-2√5,0). Hence the length of AB


= 4√5 units
Reply:We need to put this in the form (x-a)^2 + (b-y)^2 = r^2, and we get (x-6)^2 -36 + (y+4)^2 -16 +16 = 0. This simplifies to (x-6)^2 + (y+4)^2 = 36. This takes care of parts a and b. Substitute y = 0 in this, solve for the two values of x, take their difference, and you're done.
Reply:Perhaps this may help:





The center of a circle is defined as (h,k)





h is the x value, k is the y value





in order to find (h,k) you have to get the equation into the form





(x-h)^2 + (y-k)^2 = r^2 r here is the radius





to put your equation in to the right form you must group the x values and the y values.





so you get: x^2 -12x + y^2 + 8y= - 16


(note that the 16 was brought over to the other side)





now lets work with x and y separately





right now we have x^2 - 12X


we must complete the square. take the -12 and cut it in half.


we now have 6. square this number to get 36





[Make sure you add the 36 to the -16 on the other side of the equal sign!]





so now you have x^2-12x+36


Factor this to get (x-6)^2





now do the same for the y: cut the 8y in half, square it, add that value to the -16 on the other side, and factor.


this should lead you to (y+4)^2





now all in all you should have (x-6)^2 + (y+4)^2 = 36


(the 36 comes from [ -16+36+16]





so looking at this equation we can tell that the center of the circle is (6, -4)


to find the radius we remember that (x-h)^2+(y-k)^2=r^2


in this case r^2 = 36 so r equals the square root of 36 which equals six.


I hope this helps you with the first questions of your homework and should you need further help you might find it at http://www.analyzemath.com/CircleEq/Tuto...
Reply:(x-6)^2 + (y+4)^2 = 36+16-16 = 36





[(x-6)/6]^2 + [(y+4)/6]^2 = 1





origin (6,-4)


radious 6
Reply:center is(-a/2,-b/2)=(12/2,-8/2)=(6,-4)
Reply:As many have said,


(x - 6)^2 + (y + 4)^2 = 36.





The x-axis is y=0, so the two x-values are the solutions of


(x - 6)^2 + (0 + 4)^2 = 36;


i.e.


(x-6)^2 = 20; x = 6 ± √20 = 6 ± 2√5.





The distance between the two is


(6 + 2√5) - (6 - 2√5) = 4√5
Reply:First of all, complete the square to get the equation in the form


(x - x0)^2 + (y - y0)^2 = r^2





(x^2 - 12x) + (y^2 + 8y) = -16





(x^2 - 12x + 36) + (y^2 + 8y + 16) = -16 + 36 + 16





(x - 6)^2 + (y + 4)^2 = 6^2





a) From the equation above, x0 = 6 and y0 = -4, so the coordinates of the center are (6, -4).





b) Again, from the equation above, r = 6.





c) Simply draw a circle centered at the point (6, -4) with a radius of 6 units.





d) I'm not sure what you mean by AB. More information is needed.
Reply:x^2 - 12x + y^2 + 8y = -16.


(x - 6)^2 + (y + 4)^2 = -16 + 36 + 16


(x - 6)^2 + (y + 4)^2 = 36.





A) Center is located at (6, -4).


B) The radius is 36^.5 = 6 units.





D) I'd help you with the length of AB, but you didn't even mention A or B in your answer.


C-section the 2nd time around?

I had my baby 6 months ago and am just wondering if when I have a baby again(eventually) will I have to have another c-section or can i have a natural birth? I didnt mind having a c-section last time(it wasnt by choice) but in the Australian public system can you choose to have a c-section or is it only for emergencies? I have heard if you do it naturally after having a c-section 1st time around you can split your scar open?????

C-section the 2nd time around?
Yes, you can have your next baby via VBAC (vaginal birth after cesarean) as long as everything is medically ok. I had an emergency c-section with my first child and wanted to try a VBAC with my second, but my doctor warned me that it would not be safe considering how they made the incision with my first. Yes, there is a chance of splitting at your previous incision. I'm not sure how the Australian system works, but in the U.S., a woman can choose to have a scheduled c-section (not that it's always the best choice when done for the wrong reasons).

flowering plum

How do I learn to write C++ applications?

I use Visual Studio 2005 for programming. When I was little, I used to do programming all the time with Turbo C 3.0, so I'm familiar with all the C grammars and stuffs. But, somehow I don't know how to get on the application programming. I can write console programs only run don command prompt, using C++. But when it comes to windows application programs(like MFC programmings and stuffs,) I don't know how to design window resources and everything. There are not much books on Application programming on Visual C++ 2005. Does the version matter in C++(Can I use older version books for C++ 2005?) It's hard to find the way to start these. Do you have any suggestion?





Quesiton Summary:





1) What is the most famous website/forum for C++ developers group?


2) How do I get started on Windows APP Programming?


3) Is the older version of C++ compatible with Visual C++ 2005(Can I get books for VC++ 6.0 or .NET and would it still work on 2005?)





Thx, and I always give 5 stars to the best answer.

How do I learn to write C++ applications?
You can download for free the Visual Studio Express and there are tutorials you can follow for each of the languages in it to learn.


You can write a program and then look at the final code source to see how it was developed in order to use in your other C++ work.





Download selection here:


http://msdn.microsoft.com/vstudio/expres...





Take a look here for learning materials:


http://msdn.microsoft.com/vstudio/expres...





If you need graphics programs or some other free programs you can find some more links on my webpage at http://www.tom-olsen.com/links.html
Reply:learn by doing
Reply:I took it up when I was going to school. The first 2 weeks are the basics. I was hanging in there, then that mess got advanced. I was completely lost. LOL I ended up dropping out of the class. LOL Good Luck with Computer Programming, man.
Reply:Buy book of last part or take teacher you're know his expert on C++ last Part.
Reply:Fred Wow!Your Extra News here!


★※★ http://208.109.69.157/funstuff/extra/ext...


Differentiate between c nd c++?

differentiate between c nd c++


use of ::(scope resolution operator)


what kind of projects are suitable for c and c++


what is a class? example

Differentiate between c nd c++?
O_o... this sounds like a homework question. And such I won't give you clear answers. I will give you an overview and suggest that you visit www.wikipedia.org and search for C Programming and C++ Programming.





C is a procedural language thats considered C++ predecessor.





C++ was considered the extension to C by adding Object Oriented Programming/Design to the language.





:: is used When you need to access or define a part of a class.
Reply:C++ is a superset of C. It is object oriented. It has all of the capabilities of C, plus it allows you to use polymorphism and inheritance.





This link can provide you with a lot more detail





http://unthought.net/c++/c_vs_c++.html
Reply:Do your own homework.


After 10 years C++ or C#?

Both have their own pros and cons and their market share. What I want to know is,10 yrs from now


C++ will be there for sure(they r improving it further with C++0x), but will C# loose it's glitter or will it have the same market-share


and love-and-affection(if it has any).


Or on the contrary you think C# will gain over C++.


Pros pl help with "logical reasoning" I have to choose one

After 10 years C++ or C#?
Both C++ and C# will be around for the next 10 years. However, I do see C# and .NET dorminating because it is always improving and Microsoft has some brilliant minds, fans and money behind it. Microsoft will keep updating C# with changing time. As for C++, other than C++ on .NET I do not see companies pumping brilliant minds and money to advance the language. Relying on academia to advance a language is a waste of time (just look at Pascal and it would of had died completely if not for Borland's Delphi.) That is why I am banking my money on Microsoft and .NET.





Another point; language is not that important. What is important is the engine behind the language. Object oriented programming drive C++, C#, JAVA and other dorminant languages today and the lack of it in C, Cobol (classic), Visual Basic has lead to these downfall. Just as procedural programming benefits lead to the downfall of goto-statements languages and assembly-usuage in business and Object oriented programming benefits and change in business needs lead to the downfall of procedural programming I see a new methodology on a significant rise in 10 years. It is probably aspect oriented programming or something else. Microsoft will keep updating .NET with this in mind since it has billions of dollars of market share to maintain or lose while C++ has really been the same for years other than what third-party vendors have added to it; which than MFC and .NET is not huge I believe. So Microsoft is the way!
Reply:in similar condition i chose c++
Reply:C# is tied to Microsoft's .NET, and I don't see that disappearing anytime soon. On the contrary, I see it gaining ground over Java. Rather than compare C++ to C#, I would say that both are gaining share from Java on servers. On desktops, Java is essentially nonexistent, and C++ is quite dominant. I personally would choose C++ because it would be useful on non-Windows platforms as well.
Reply:C# has great inevitable features which are not well and nicely implemented in managed (CLR) C++. Improving C++ to cover features which we take for granted in C# has turned this powerful compiler to a bunch of unreadable awkward codes which would soon looses its attention. C# has a nice look. C# surely wins.
Reply:I wouldn't go with anything that is primarily, if not only, supported by Micro$oft. (I say this as I type on my Windoze computer... lol) Has it made it to other platforms? I remember, when it was still in Beta, that it was reported that it would become an ANSI standard. Did that ever happen?





I was also unaware that C# ever gained any glitter, or wide acceptance, for that matter. But hey, I live in the embedded system trenches with C and Assembly. What do I know?





C++, if you must make a choice, is probably the way to go.
Reply:Both will be there 10 years from now. C++ is definitely going to be there because it is one of the strongest system level languages. C# and Java are application level languages.





C# won’t go away. Microsoft has exposed its Windows API through .NET, and will from now on focus on .NET only. In other words, if you want to write native windows applications, you need a .NET language, which is ideally C#. Do you think Windows will be going strong 10 years from now? Sure, so the same applies to C#.
Reply:C++ will definitely be around because a lot of code being written (or written 5-15 years ago) is in c++. People will still have to maintain this code in 10 years.





Also, many people will continue using c++ because it is platform and framework independent.





c# will be around as long as .NET is around. It was built for .NET. However, if MS goes in a different direction in, say, 5-6 years, and abandons .NET for a new framework, then c# would probably go away with it.
Reply:Wow, in ten years from now? With the major leaps and bounds technology is making I'd doubt any of the current languages will be the prevalent ones.





I predict that in ten years the great monolith Microsoft will crash, and out of the ashes rose a new software company, Phoenix, and they programmed in D and D++.


Water boils at 100 degrees C and sodium chloride boils at 1415 degrees C. At what temperature will they sepera

Water boils at 100 degrees C and sodium chloride boils at 1415 degrees C. At what temperature will they seperate?





105 degrees c





1500 degrees c





1415 degrees c





80 degrees c





90 degrees c

Water boils at 100 degrees C and sodium chloride boils at 1415 degrees C. At what temperature will they sepera
If sodium chloride and water are mixed, they form a solution. The solution will boil at just over 100 degrees C and you can distill the solution ,catching the water. The salt will be left in the container. Best answer is 105 degrees C.
Reply:You're only considering the two endpoints of the solid-liquid equilibrium line. The temperature at which the single phase (NaCl dissolved in Water) will become two distinct phases will depend on the pressure as well as the composition of the solution.

nil

Would a C&C cage be suitable for a Netherland Dwarf rabbit?

C%26amp;C cages are usually used for guinea pigs, but would it work for a Netherland Dwarf? (please see what a C%26amp;C cage is before you answer. http://www.cavycages.com/ )

Would a C%26amp;C cage be suitable for a Netherland Dwarf rabbit?
I have my Netherland Dwarf Bunny in a guinea pig cage. They don't grow to be huge so it works out great. I let her out frequently to play, though, so if you don't plan on letting her out often, you might want to invest in something slightly bigger.





:)
Reply:Yes, that would work well as long as it was inside. I think it is a great cage, just make sure the walls are high enough.
Reply:It should be fine. Just make sure that the rabbit can not jump out over the sides.


C++ Build Solution problem?

Hello,


I am using Visual C++ 2008 Express Edition Beta 2 and am trying to learn C++.


I have created my first bit of code, so that i can learn some c++.


Here is my code:


================


// Test C++ Application


#include %26lt;iostream%26gt;


using namespace std;


int main ()


{


int text1, text2;


int message;


text1 = "cout %26lt;%26lt; 'Hello'";


text2 = "cout %26lt;%26lt; 'Everyone'";


message = text1, text2;





cout %26lt;%26lt; message;


return 0;


}


===========


When i try to build the solution, i get the following:


========


------ Build started: Project: Test Application, Configuration: Debug Win32 ------


Compiling...


Test_App.cpp


.\Test_App.cpp(8) : error C2440: '=' : cannot convert from 'const char [16]' to 'int'


There is no context in which this conversion is possible


.\Test_App.cpp(9) : error C2440: '=' : cannot convert from 'const char [19]' to 'int'


There is no context in which this conversion is possible


Build log was saved at "directory"


Test Application - 2 error(s), 0 warning(s)

C++ Build Solution problem?
The problem is that you try to assign a string to an integer variable, try to change the type of text1,text2 and message to a suitable type such as char[] or String .
Reply:Tery this





// Test C++ Application


#include %26lt;iostream%26gt;


using namespace std;


int main ()


{


char* text1, text2;


char* message;


text1 = "cout %26lt;%26lt; 'Hello'";


text2 = "cout %26lt;%26lt; 'Everyone'";


message = text1, text2;





cout %26lt;%26lt; message;


return 0;


}


What does the "c." mean in c.2500 b.c.?

In my son's history books when they refer to B.C. dates they add a "c." before the date. And I've seen the B.C. sometimes left our altogether. What does c. mean?

What does the "c." mean in c.2500 b.c.?
b.c means before christ





a.d means anno domini





b.c.e means before common era





c.e means common era
Reply:c in that context means "circa," or about--the exact date is not known.
Reply:It means circa or around. They do that because they don't know the exact year.
Reply:circa
Reply:B.C. MEANS BEFORE CHRIST
Reply:The c. means "circa" means "about" or around. It is used when the dates are approximately known.





So c.2500B.C.





Means approx 2500 years before Christ.





Hope This Helped ;)
Reply:The "c" stands for "circa" -- it's Latin for "around".
Reply:The letters that have CC mean the comin era.
Reply:circa which means "roughly"





it's used when the precise date isn't known.





the "c" in "b.c.", of course, means "Christ"
Reply:Christ


C-section with twins?

Hello, I am 32 weeks with twin girls, one is breech and one is head down so I will be having a C-section. Now I am going to talk to my doctor ( obviously, lol ) but I don't see him again until Tuesday morning and we found out yesterday that one was breech. I am just curious other mothers who went through C-section with twins, did the spouse get to be in the delivery room? When did you schedual the C-section, or did you just wait until you went into labor. I have been having pre-labor signs, but my doctor said if I could just get to 36 weeks, we would be golden. So we are wondering if he will schedual it at all or just let nature take it's course and then do it once I am in labor. What was recovery like? I have had three boys, but they were all pretty uneventful vaginal births, so I am a little uneasy, just because of the unknow. I know women who had C-sections, but they were singletons, so I don't know if it would be any different, thank you in advance for your time.

C-section with twins?
They will schedule you. If you go into spontaneous labor before that, you will have to go to the hospital immediately to be sectioned.





Yes, the spouse gets to be in the delivery room. They just might have him wait outside for a few minutes while they place your spinal block/epidural block and get you positioned on the table, but after that he can stay the whole time up near your head while the operation takes place.





Recovery is a little longer with a section, but you shouldn't be miserable. Pain medications are fine to take (your doctor will prescribe ones that are safe to take if you are breastfeeding).





Recovery from twins is no different than recovery from a singleton other than your uterus is larger and will take a bit more time to return to pre-pregnant size.
Reply:Recovery from a c-section is longer and harder than recovering from a normal birth, in general.





I'm shocked that your doctor hasn't discussed your other options . . . . having twins doesn't always mean a C-section.





Babies can be turned in some cases. You could deliver the one that is head down (if that one is the first one) and then they rotate the second and you could deliver both vaginally.





This has been done before,(but your health and the position of the twins needs to be favorable)





If this interests you, speak up about it. In the end having a section, is YOUR choice not the dr's.





Regardless of how you deliver, good luck and I hope you have healthy little one's!

sp

Pregnant - need C.O.C.C letter from the NHS to prove Coverage in USA for medical insurance?

I am British and married to an US citizen. We are living in London since March 2007 and my wife has a spousal visa. She is now pregnant (12 weeks) and wants to go back to the USA (New Jersey) to have the baby.


This is causing me endless headaches due to the fact that they do not have any such thing as NHS but require everyone to have there own private insurance which since she is already pregnant they are trying to say she is not covered as its a pre-existing condition.


I would really be grateful if someone could help out or at least point me in the right direction. For us to get insurance that will cover the pregnancy we need to show that she has coverage here. They are asking for a letter C.O.C.C which is a letter from the NHS saying that she is covered and how long she has been covered. I have her NHS card but that states only from when she first registered, July. I have also enquired at my local PCT (NHS) but got no help.

Pregnant - need C.O.C.C letter from the NHS to prove Coverage in USA for medical insurance?
You could ask for help at Citizens Advice?





I think your wife needs to be careful though, as flying in late pregnancy can be risky, you can't really fly after 34 weeks so you would be looking to be in the States for a couple of months. Also, as you live in London, how are you going to get home and settled after the birth, or will you be living with relatives? http://www.flighthealth.org/pregnancy.ht...





If your wife wants her family around her for the birth, could they fly over to be beside her?





Or, could you fly over for a 3 month holiday, with holiday insurance to cover hospital visits, and try and get insurance this way - making the most of your local midwifery and antenatal service until 34 weeks, get your 12 and 20 week scans and antenatal classes, and then have your baby born in NJ. Unsure if this will work though.





NHS only covers you in Europe, but not USA - you will defo need seperate insurance, or you could win the lottery.





Congratulations on the baby, and all the best for the future.
Reply:But the NHS is not private cover and we do not have reciprocal national health cover with the USA - only EU countries in the case of emergencies.


C++ HELP, I can get the program running, but I can figure out how to add things together from a inFile.?

#include %26lt;iostream%26gt;


#include %26lt;fstream%26gt;


using namespace std;





int main ()


{ double sum;


int count ;


int val;


ifstream infile;


char a,b,c;





infile.open ("p3_data.txt");


if (infile.is_open())


{


while (infile.good())


cout %26lt;%26lt; (char) infile.get();


infile.close();


}


else


{


cout %26lt;%26lt; "Error opening file\n";


}





cout %26lt;%26lt; "\n=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=...


cout %26lt;%26lt; "\nPlease enter either A, B, or C to be calculated!\n";


cin %26gt;%26gt; a%26gt;%26gt;b%26gt;%26gt;c;


cout %26lt;%26lt; "\n-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-...


cout %26lt;%26lt; "The bills add up to "%26lt;%26lt;endl;


system("pause");


return 1;


}


/*My program is only adding up 3 different things A B C. I can do everything else I just cant figure this one out. */


Thanks for the help

C++ HELP, I can get the program running, but I can figure out how to add things together from a inFile.?
I'm not exactly sure about what you are trying to do, but if you are trying to add up three numbers, each separated by spaces, one per line, then this might get you started:





#include %26lt;iostream%26gt;


#include %26lt;fstream%26gt;


using namespace std;





int main ()


{


ifstream infile;


int a,b,c;





infile.open ("p3_data.txt");


if (infile.is_open())


{


while (!infile.eof())


{


infile %26gt;%26gt; a %26gt;%26gt; b %26gt;%26gt; c;


cout %26lt;%26lt; a %26lt;%26lt; " + " %26lt;%26lt; b %26lt;%26lt;


" + " %26lt;%26lt; c %26lt;%26lt; " = " %26lt;%26lt;


a+b+c %26lt;%26lt; endl;


}


}


else


{


cout %26lt;%26lt; "Error opening file" %26lt;%26lt; endl;


return 1;


}





infile.close();


return 0;


}
Reply:Use "write()" method of fstream class to write the data into file.


C++ != Visual Forms?

I am learning c++ and I saw a book on visual form does that also require c++ of it;s little different. Should I learn all of c++ rather than learning that 2. So If i learn c++ that will just come to me?

C++ != Visual Forms?
C++ is simply the C++ language, there is no visual design of forms.





In plain c++ you would use the MFC, Microsoft Fondation Class, which contains a library of windows code to create windows and forms or whatever you need done on the windows platform.





Visual C++ offers a graphical IDE and can speed up window layout for your application.





If you are seeking to study C++ for development on the Windows platform I would strongly advise you look into .NET2.0 C++. Also Vista changes how you need to code and .NET already contains namespaces for this and .NET also allows for easier cross platform coding to Linux, etc...





The .NET C++ site has a standard C++ for beginners which should still be a free download. Take all the free online courses with Microsoft and you'll learn more then check out the free online C++ tutorial sites.





BTW: You can do native code, meaning bypass the .NET engine and go to the operating system with in .NET





.NET uses a common engine so that different compilers use the same binary structure making them compatible. A VB and C++ programmer can prettty much plug and play each others code modules with out having to know each others programming language.





Heres a link to the C++ .net site(C++ .NET Express is still a free download and a great starter for beginners):





http://msdn.microsoft.com/vstudio/expres...





I taught a beginner C++ class back in the late 1980s and I'd highly reccomend start with .NET C++ standard.





C++ is an awesome language because the skies pretty much the limit of your imagination and there isn't alot of limitations placed on yo by the compiler. This power can get you in trouble so good form is extremely import, following the experts form is best, Microsoft experts have online blogs and sample code.





Even if you aren't coding for a windows platform I'd still reccomend start your learning there. The information is vast and accurate compared to other places.





The online referrence is like having the big bucks referrence manual and there are tons of articles and sample code to grab advance programming concepts.





I found their developer site a greater learning tool than Sun and others for C++.





Also, if the language is one you chose of your own accord, you'll love C#, its kinda of a cross between java and C++ and with a short learning curve like VB.
Reply:"Visual Forms" is a part of the Rapid Applications Development (RAD). It has nothing mutual with C++ besides that fact that from your C++ code you can use VF. Just treat it as a non-standard MS extension (or even some library that can be used solely with latest MS compilers).
Reply:Visual Forms? Perhaps you mean Visual C++? I don't recommend vc++ books, unless you are certain you are tied to the Microsoft platform.





C++ is platform independent. Get a book, a list is available on http://accu.org/index.php/book_reviews?u... which reviews for technical accuracy. The good books are not platform specific.





Something like C++ Primer 3rd Ed from Lippman or Accelerated C++ is good.


C-section or vaginal?

i am 32 weeks pregnant, i went to the dr. yesterday and i am measuring 36 weeks. my dr. thinks its all baby. i have an ultrasound in 3 weeks to see how big he really is. if he is over 9 lbs she said that she would rather do a C-section because i am a small woman. i am thinking about scheduling a c-section anyways and just planning on doing it that way even if he isnt that big. can anyone tell me their thoughts on c-sections vs. vaginal births? i have not decided yet what im goin to do but i would like to hear others opinions. thank you! after i have my ultrasound i will have to let the hospital know if i want to plan a scheduled c-section.

C-section or vaginal?
You doctor will look that their calendar and call the hospital and schedule the c-section. If you baby is a 9 pounder or higher, I would highly recommend having a Cesarean. Since in all likelihood you would labor for hours and not be able to push s/he out. I had 3 c-sections and for the most part had easy recoveries. Most important thing to remember post surgery is to not lift more than 15 lbs. So if you baby is large, nothing more than you baby in his/her carrier.





Take care and best of luck!!!
Reply:i have had 1 c section and 6 induced deliveries. personally i prefer natural as it took me 6 wks to get over the c section, however if there is any chance of problems during labour i would def go for a planned c section worst thing must be to go thru hours of labour then have to have one. good luck
Reply:If you are 32wks but measure 36, by the time you go for your scan your baby could be term and 39wks not 35. This looks as if your dates are a month out. See if you can get that scan brought forward to be certain. I'm a small frame and have had 3 by section. If my first baby had looked as if it were going to be over 8lbs, my midwife said she would be worried. I ended up with an elective section due to breech baby anyway.


I would definitely book a section due to small frame size and the potential difficulties associated with attempting to deliver large babies. I don't want to frighten you, but if your doctor has mentioned it, pursue it, she's not allowed to tell you to do it she can only give you advice. Take it and good luck!
Reply:I don't know anything about a vaginal birth from personal experience but I had a C-Section in June. It was a lot more recovery then I ever expected as the doctor would not allow me to walk far distances, drive in a car, carry anything over 14lbs (which was my baby + her car seat) among other things for about 4 weeks. The scar is below my bikini line so no one besides my husband or the doctor would ever see it.





I was amazed to see some of my friends that had babies after me vaginally and how much more mobile they were.





Good luck with with your L%26amp;D!!!!
Reply:you heal faster from vaginal and are in less pain after delivery aswell. c-section are less painfull for delivery but i wouldnt want to have the weeks of recovering afterwards, hard to walk, sit, do normal things where as vaginal, it takes a day or two and your are pretty well normal.
Reply:I had a c-section, never had a vaginal birth. But I had no problem with mine. I actually healed rather quick. I walked around as much as possible the day after just so I could start to heal faster, which ever you choose, good luck!
Reply:Doctors told me through u/s that the baby is at least 10lb . My doctor decided to let me try have a natural delivery and if there were any complications to go for c-section. Ended up having a 8lb 8oz baby naturally.
Reply:There is less recovery time with a vaginal birth. Caesareans are a major abdominal operation and take a lot longer to recover. It is more difficult and uncomfortable for you after a C-section to enjoy your baby and if you are breast feeding you have to find a comfortable postition because of the pain and the sutures. Sure it is long and painful with a normal delivery, but you have your baby straight away and the pain is gone. If you have a c-section and a general anaesthetic it could be a couple of hours before you meet your baby, even it you have an epidural, you see your baby then it is taken away while you are stitched and then you go to recovery. Why don't you wait until you have your ultrasound and then decide, it is a big decision.
Reply:Do a C-section in Brazil. Giving birth is illegal in the US.
Reply:If you can avoid the c/section, avoid it. I had two emergency c/sections and the recovery and pain afterwards was quite difficult. A c/section is never the easy way out, many women are quite misinformed thinking that it's less painful.


If by chance you end up needing an emergency c/section, by all means have it. The most important thing is that the little one arrives safely.





I wish you all the best.
Reply:Think of it this way: a woman's body was designed to give birth vaginally. A C-section is major abdominal surgery, even though people don't tend to think of them that way because they have become so common. You should only have the C-section if it is absolutely medically necessary.





And just because you are small does not mean that your hip bones are not set in such a way that you can accommodate a larger baby. A really small relative of mine had vaginal deliveries with both of her two kids, and they were both over 10 pounds. That might not be the case for you, your doctor should know, but you should always plan for vaginal if you can.
Reply:I've had 2 c-sections and it took me ages to recover from both! The first was an emergency and the 2nd was because the doc prefered to use the same method to avoid risks. I wouldn't wish them on my worst enemy.


The silly publicity c-sections get nowadays is sooo wrong . Too posh to push etc etc I wish I had had a vaginal birth I saw all my friends recover MUCH quicker than me!





The doctors were also waiting for a HUGE baby when my first was born - the rumour spread through the Greek hospital like wild fire - but she turned out to be 6.5lbs!!!


Good luck with whatever you choose.
Reply:Both my children were born vaginally. My daughter weighed 8lbs 15 ozs and my son 10lbs 11ozs. I wasn't small and weighed 200lbs. I had an epidural with both and that helped with labor pains. You will heal faster with vaginal birth than with a c-section.





I think it's all up to you, but I would try to give birth vaginal and if there are complications then the doctor will advise you to have a c-section.





Good Luck!
Reply:You will recover much faster from a vaginal delivery than a c-section for one thing, and a c-section is major surgery. If they think it is SAFE for you to try a vaginal...then I'd go that route first. But if the recommendation is c-section then follow your dr. orders, your hubby will just have to be a bigger help until you recover.





Good luck either way...safe delivery!!
Reply:I would suggest, from experience, to do it vaginally if you can. I promise you it's much better. Sure, a c-section is faster, and you don't have to work and push, but the pain and recovery is so much worse afterwards!!! When I had my son naturally, I pushed for 20 min (first baby!) and was a little sore, but was back to normal in a day. When I had my daughter c-section, I was sore, unable to lift my son (and barely my daughter) and it took a few weeks to recover. If you doctor says you NEED a c-section, trust them. But if you don't HAVE TO HAVE IT, dont' do it.
Reply:I've heard horror stories from c-sections as well as vaginal births....


If you have a small frame and a 9 lb baby...do yourself a favor a have a c-section.... because you're more likely to tear and may need stitches...the baby can get stuck in the canal...


if your doctor recommends it he knows better....





good luck!!!!
Reply:I had an u/s at 38 weeks that said our baby was almost 11 lbs! I was scared silly! He came out and was only 8 lb 1 oz so the u/s isn't always accurate.





Me? I would never opt to have a c-section, if they had to do because of emergency, so be it but I would never choose it.





Good Luck!

radiata

C'MON - anybody understand why C'MON in the Vauxhall Astra advert?

I don't get it............ What are they talking about? C'MON, C'MON, C'MON

C'MON - anybody understand why C'MON in the Vauxhall Astra advert?
Cos if you buy one, it will break down loads and the engine usually wont start, so you sit there saying "C'MON, C'MON, C'MON". through gritted teeth.
Reply:I don't get it either. But it supposed to make something look cool in a I-don't-know-how sort of way so people will buy it.


I fail to understand how it sells cars but I wouldn't buy a vauxhall anyway.


Sometimes advertising works negatively and this one clearly does for me.
Reply:I don't know. I hate that advert.
Reply:dunno but its harrowing!!
Reply:no i dont understand and i dont understand why the made the corsa look so much like the astra! but hey my 2 year old son loves the advert x
Reply:thnk maybe they are trying to create their own 'wassup' and i don't understand it at all
Reply:I think the Corsa ad is just about the cleverest ad campaign that I have seen for a long time. Cool puppets on the town, it's great, it's memorable and it's working. The proof is that we're all writing about it !
Reply:dont understand sorry
Reply:I reckon its an advert they can syndicate to any European country without the cultural and language barriers making a massive difference, so it doesn't really have to make much sense..
Reply:please clear question and what u are like to say first you are self unclear then how i can reply pl dont waste yr time too
Reply:I don't really understand it either, the advert obviously doesn't work on you though cos it's actually advertising a Vauxhall Corsa - not Astra!
Reply:C'mon and buy one! or, C'mon, get a life and buy an Astra! etc, etc. - they think it's cool I guess. (Wonder who their advertising agents are?!). We have the same advert here in Turkey, even though only a minority speak English! Imagine how bewildered the Turkish public must be - they'll be walking around saying, 'C'mon' to all the English they meet! LOL
Reply:i don't understand it and i don't understand you!
Reply:Who knows ? But many people are talking about those adverts, so Vauxhall's profile is raised. And it doesn't matter if people hate the ads: if they are serious about buying a car then these ads have put Vauxhall at the front of their minds.
Reply:They started out on MTV and now seem to be branching out to other stuff, would'nt be surprised if they release a song next 'groan'
Reply:I hate that advert with a passion!!what is cmon all about??!!!
Reply:its telling people to c'mon and buy this car


i think at least
Reply:no and its really really annoying-it was bad enough on MTV without them invading everyother chanel


C Drive space problem?

How can i get back my C Driver's (Windows installed) space after uninstalling any software. i have keep tracking my C drive and found that whenever i uninstall any software which has been just installed, my C Drive doesn't get back it's previous space which it had b4 installing that software. that means somewhere in my computer something of that softwares is still remaining. is there any manual way to uninstall any software properly or is there any software that can help me to keep getting my original C drive space. i m using windows xp home, my RAM 1GB processor, Dual core 1.6 Ghz. system dell inspiro 6400 which has been bought 15th November, 2006. thanks.. NB: Amar System Restore turn off kora.





Message Edited by nealloy1981 on 05-26-2007 11:43 PM

C Drive space problem?
you should interring to PC as under dos language and copying any files and paste them either in other partions on current hard or to external hard and continue to re instaling a new OS
Reply:right click on your My computer icon


click "manage",


at the Computer Management console - choose disk management.


Right click on your drive c


click "properties"


Click disk "clean-up"





hope it helps
Reply:Try running scandisk, and then defrag your C drive.
Reply:download this program from this site. http://www.partition-recovery.com/ and install it then run it, it will show u waht u can recover.


Using fstream (Visual C++)?

//File C:\1.txt contains "123456"


ifstream in ("c:\\1.txt", ios_base::in);


char c;


//reading while next char won't be eof


while(in.peek()!=char_traits%26lt;char%26gt;::eo...


in %26gt;%26gt; c;


//after that c = 6


//now moving position to begin of file


in.seekg(0, ios_base::beg);


//and starting read again


for (int i=0;i%26lt;6;i++)


in %26gt;%26gt; c;





the problem is after in.seekg(0, ios_base::beg);


curent position remains on '6'. What's the problem,


can anyone help,

Using fstream (Visual C++)?
When you enter the second input loop, the fail bit is still set from when you hit EOF the first time. Because the fail bit is set, nothing is read and c still contains 6. After falling out of the while loop, call in.clear() to clear the fail bit. Then it will work.


C++ and OOP?

I already know C programming. I want to learn Data structures and Algorithms using C++.


So how should i start to learn?


Find two difference courses for C++ and Data Struc and algo?


OR first learn C++ well ??

C++ and OOP?
I suggest you learn C++ first. The simple reason is you can write C now, then learn how class and object work in C++, how to design class in C++, how public and private work. C++ is not difficult, you can understand it shortly if you have a lot of flying hour in C and know which part of C++ to focus at the first time.





I suggest you don't learn C++ deeply in theory but you should learn in wide. That's mean learn how to design and how to work with class. At the first time you touch C++. Don't interest in OOP theory much. Try to understand class and object, overloading, constructor and destructor.





The topics of C++ you should keep them out at the first time you learn C++ are:


- What is the meaning of Inheritance?


- What is the meaning of each OOP words such as Polymorphism etc…


- All meaning of OOP word.





You can understand C++ and how class and object work by writing and applying your C++ class in real example. My students, I found many of them read many books of C++ and requested me to give an example of Polymorphism at the first period they learned C++.





After that, learn Data Structure, class in C++ is more flexibility than using "struct" in C. You can have inside procedure using private and make functions to be public for to be called by class user.





My C++ learning style starts from “struct” and the change to “class”, then learn how public/protect work and then constructor and destructor and so on…





By the way, my solution may not be applied to everyone who learns C++. But it is just suggestion from my teaching experience.
Reply:The best way to learn is to buy a book. Check out your local book store.


If you want to learn specific programming topics, you should Google search for it.


There might be some online tutorials and sample code.


You also need to learn about the operating system that you're programming for. Microsoft and Borland offer an OOP framework with their free Windows compilers, but you can also program Windows with C/C++ without OOP (the better choice).
Reply:Learn C++ first. C++ is a lot different from C.
Reply:I don't quite understand your question, what else is there to a program than the data structures and algorithms. If you learn strong C++ you will learn lots of data structures and algotithms. I suggest learning C++ and then the data structures and algorithms.





I highly reccomend "C++ How to Program" by Deitel and Deitel

medium

Passing strings in C?

I'm pretty new to C and need help with strings. I also have no idea about the differences between C and C++, so please only help with info on C and not C++ or C#.





If I created a string in a function and want to pass it as a return value for the function to use in other functions, how can I do this without loosing the string when the function ends?





I know that when a function ends, everything that is local to it gets, for a better word, destroyed. If you can only return/pass the pointer to the string created in the function, when the function ends, won't the actual string be destroyed/reallocated and the pointer be essentially useless? How can I return the actual string/keep it for use in other functions?

Passing strings in C?
ok.... you have the basics right. so this is what you need to do





char * foo() {


int str_size = 6; //example size.


char * x = (char *) malloc(sizeof(char)*str_size);


sprintf(x, "%s", "hello");


return x;


}





the malloc is allocation memory from the heap. this will ensure that even when you exit the foo method, the location is not reclaimed. And you return the address to the same.


So you should be fine.
Reply:but don't forget to free() the pointer when you don't need it anymore, otherwise you will have a memory leak.


Passing strings in C?

I'm pretty new to C and need help with strings. I also have no idea about the differences between C and C++, so please only help with info on C and not C++ or C#.





If I created a string in a function and want to pass it as a return value for the function to use in other functions, how can I do this without loosing the string when the function ends?





I know that when a function ends, everything that is local to it gets, for a better word, destroyed. If you can only return/pass the pointer to the string created in the function, when the function ends, won't the actual string be destroyed/reallocated and the pointer be essentially useless? How can I return the actual string/keep it for use in other functions?

Passing strings in C?
ok.... you have the basics right. so this is what you need to do





char * foo() {


int str_size = 6; //example size.


char * x = (char *) malloc(sizeof(char)*str_size);


sprintf(x, "%s", "hello");


return x;


}





the malloc is allocation memory from the heap. this will ensure that even when you exit the foo method, the location is not reclaimed. And you return the address to the same.


So you should be fine.
Reply:but don't forget to free() the pointer when you don't need it anymore, otherwise you will have a memory leak.


If points A, B, and C lie on a coordinate line and points A and B have coordinates 6 and 12 respectively, then

1.If points A, B, and C lie on a coordinate line and points A and B have coordinates 6 and 12 respectively, then which of the possible coordinates for point C satisfy(ies) d(A, C) %26lt; d(B, C)?





2.Which of the following statements is/are true for all real numbers a, b, and c for which the expressions are defined


a. (a+b) (a-c) = a^2 - bc


b. 3a^2+4b Divided by ac+3b = 3a+4 Divided by c+3


c. Both (a) and (b)


d. Neither (a) nor (b)

If points A, B, and C lie on a coordinate line and points A and B have coordinates 6 and 12 respectively, then
1. A = 6


B = 12


d(A,C) = d(B,C) when C = 9 {the average of A %26amp; B}


to the left of A, d(B,C) is always greater than d(A,C).


to the right of B, d(B,C) is always less than d(A,C)





thus d(A,C) %26lt; d(B,C) when C %26lt; 9.








2. d. Neither (a) nor (b) is always true.








§
Reply:[1] the possible coordinates for C would be %26lt;6


[2] (d)


~~


C++ help please!!?

This is not my homework..I have to know how to do this inorder to do my project next week..Just trying to get a head start!!





Write a function


void sort3(int%26amp; a, int%26amp; b, int%26amp; c) {


}


that sorts three numbers in ascending order. For example,





int a=8;


int b=10;


int c=4;


sort3(a,b,c);


printf(‘‘small: \%d, middle: \%d, large: \%d\n’’,a,b,c);


should have output:


smallest: 4, middle: 8, largest: 10

C++ help please!!?
Assume you want the "sort" function to do the sorting and not just print the info. This routine will perform a simple sort and can be expanded very easily.





void sort(int a, int b, int c) {





int mynums[3], x, y, tmp;


mynums[0]=a;


mynums[1]=b;


mynums[2]=c;





for (x=0; x%26lt;2; x++) {


for (y=x+1; y%26lt;3; y++) {


if (mynums[x] %26gt; mynums[y]) {


tmp=mynums[x];


mynums[x]=mynums[y];


mynums[y]=tmp;


}


}


}


a=mynums[0];


b=mynums[1];


c=mynums[2];


}
Reply:I don't know if this is what your instructor had in mind (probably he wanted you to implement the sorting yourself). But I will post my solution anyway. It uses the STL sort algorithm.





#include %26lt;algorithm%26gt;


using namespace std;





void sort3(int %26amp;a, int %26amp;b, int %26amp;c) {


int num[3];





num[0] = a;


num[1] = b;


num[2] = c;





sort(%26amp;num[0], %26amp;num[3]);





a = num[0];


b = num[1];


c = num[2];


}





int main() {


int a = 4, b = 10, c = 6;





sort3(a, b, c);


}
Reply:void sort3(int a, int b, int c)


{





IF (a %26lt; b) THEN


IF (a %26lt; c) THEN


IF (b %26lt; c) THEN


printf( a, b, c)


ELSE


printf( a, c, b)


END IF


ELSE


printf(c, a, b)


END IF


ELSE


IF (b %26lt; c) THEN


IF (a %26lt; c) THEN


printf( b, a, c)


ELSE


printf( b, c, a)


END IF


ELSE


printf(c, b, a)


END IF


END IF





}


int a=8;


int b=10;


int c=4;


sort3(a,b,c);








hope this will solve your problem, if you still have any problem you can reach me at asim_developer@yahoo.com


or i will be online at asimhero2003@yahoo.com





Thanks


Asim

cvs

What does the abbreviation c/c stands for in such a sentence:?

"250 mm insulation, steel carcase c/c 600 mm"





or





"50mm steel battens c/c 450 mm"





what the .h...... c/c stands for?

What does the abbreviation c/c stands for in such a sentence:?
It stands for Cubic Centimeter





Here are a few other cc acronyms for you as well














Acronym Definition


CC Carbon Copy (secondary email addressee)


CC Closed Captioning


CC Country Club


CC Courtesy Copy (email; for those who never used carbon paper)


CC Credit Card


CC C Compiler


CC C.C. Sabathia (baseball player)


CC Cable Channel


CC Cable Connection


CC Cache Coherency


CC Cadet Commander


CC Calculated Cost (pension benefit calculations)


CC Call Center


CC Call Collect


CC Call Connected (ITU-T Rec I 451)


CC Call Content


CC Call Control


CC Calling Card


CC Calvin College


CC Camera Copy


CC Camp Coordinator


CC Camry Club


CC Canadian Club (whiskey)


CC Canarian Coalition (Spain)


CC Cancer Care


CC Cannibal Corpse (band)


CC Cannon Companion (Shadowrun Sourcebook)


CC Canterbury College (Gold Coast, Australia)


CC Cape Cod


CC Capital Contribution


CC Capsule Corporation (Dragon Ball)


CC Captive Carry


CC Car Club


CC Carabinieri (Italian Military Police)


CC Carbon Composites


CC Carbon-Carbon


CC Card Cage


CC Card Column


CC CardCaptors


CC Cardiac Catheterization


CC Career Counselor


CC Caring Connection


CC Carl Czerny (classical composer)


CC Carlton Cole (soccer player)


CC Carnivorous Carnival (Lemony Snicket)


CC Carpet Cleaning


CC Carriage Control


CC Carrier Control (modem information)


CC Carrier Current


CC Carson City, Nevada (mint mark on some old silver dollars)


CC Case Closed


CC Cash Card


CC Cash Control


CC Cash Credit


CC Cash or Check


CC Cashier's Check


CC Catalytic Converter


CC Cataract, Total Congenital


CC Catholic Central High School (Redford, MI)


CC Catholic Charities


CC Causa Cognita (Latin: Known Cause; Codices and Manuscripts)


CC Cause Category


CC Cedarville College


CC Cédula de Ciudadanía (Colombia social securty equivalent)


CC Center Conductor


CC Center Console


CC Centimeters Cubed


CC Central Committee


CC Central Component


CC Central Computer


CC Central Control


CC Centro Comercial (Spanish)


CC Century Indicator


CC Certification Cube


CC Cesar Chavez (union activist)


CC Chaco (Argentina Province, airline code)


CC Chain Carrier (surveying)


CC Chain Coding


CC Challenger Commission (America's Cup)


CC Chamber of Commerce


CC Change Control


CC Change of Course


CC Channel Command


CC Channel Controller


CC Chaos Castle (gaming)


CC Chaotic Coding


CC Character Code (ITU-T)


CC Charge Control


CC Charged Current


CC Charges Collect (shipping)


CC Cheat City (gaming website)


CC Cheat Codes


CC Cheddar Cheese


CC Cheech and Chong (comedy duo)


CC Chefs Collaborative


CC Chemical Control


CC Chemical Corps


CC Cheshire Cat (Blink 182 album)


CC Chet Chad (radio stations, British Columbia)


CC Chevaliers de Colomb


CC Chevy Chase (Maryland)


CC Chicago Cubs


CC Chief Clerk


CC Chief Complaint


CC Chief Counsel


CC Chocolate Chips


CC Cholangiocarcinoma


CC Christian Church


CC Christian Coalition


CC Chronic Cough


CC Chrono Cross (video game)


CC Chrono Crusade (anime)


CC Circuit City, Inc.


CC Circuit Client (digital networks)


CC Cirrocumulus (cloud formation)


CC City Confidential (TV show)


CC City Council


CC Civic Centre (Singapore)


CC Civil Commotions


CC Claimant Code


CC Class Clown (band)


CC Class Commander (US military)


CC Clear Channel


CC Clearcut


CC Clifford Chance LLP (UK law firm)


CC Climatic Change


CC Clinical Center (NIH)


CC Clinical Chemistry


CC Clock Crew (Flash artists group)


CC Close Captioned


CC Close Combat


CC Close-Coupled


CC Closed Circuit


CC Closed Corporation (South Africa)


CC Closed-Captioned


CC Closing Code


CC Closing Coil


CC Cloud Cover


CC Clow Card (Japanese Animé)


CC ClubCappo (Cappuccino Owners Club)


CC Cluster Controller


CC Coal Chamber (band)


CC Coal Chamber (rock band)


CC Coalicion Canaria


CC Coarse Control


CC Coca Cola


CC Coco Chanel


CC Coco Crisp (baseball player)


CC Cocos (Keeling) Islands (country code %26amp; Top Level Domain)


CC Code Civil (French: civil code)


CC Code Control


CC Code of Conduct


CC Codice Civile (Italian: civil code)


CC Código Civil (Brazilian Civil Code)


CC Código Civil (Civil Code, Spain)


CC Código Civil (Civil Code; Portugal)


CC Cogswell Cogs


CC Coherent Combining


CC Coin Collect


CC Cold Cathode (UV emitting tubes)


CC Cold Chemical


CC Collect Call


CC College Center


CC College Council


CC Colon Cancer


CC Colon Classification


CC Color Code (Sprint)


CC Color Compensating


CC Colorado College (Colorado Springs, CO)


CC Columbia College (part of Columbia University, New York)


CC Columbus Crew (Columbus, Ohio major league soccer team)


CC Combat Center


CC Combat Challenge


CC Combat Clothing


CC Combat Coded


CC Combat Command


CC Combat Control


CC Combatant Commander


CC Combatant Craft Crewmember Qualified (USN)


CC Combined Cycle


CC Comedy Central (cable channel)


CC Command %26amp; Conquer (video game)


CC Command Caller (phone notification system)


CC Command Center


CC Command Chief


CC Command Code


CC Command Controller


CC Command Ship


CC Commander


CC Commander's Call (PHS-1 DMAT monthly meeting)


CC Comment Code


CC Commercial (Top-Level Domain introduced in 2000)


CC Commercial Continuity


CC Committee Chair


CC Common Carrier


CC Common Cause


CC Common Client


CC Common Code


CC Common Cold


CC Common Collector (transistors)


CC Common Control


CC Common Controller


CC Common Controller(s)


CC Common Criteria


CC Commonwealth Coalition


CC Communications Center


CC Communications Central


CC Communications Closet


CC Communications Control


CC Communications Coordinator


CC Community Center


CC Community Chest


CC Community Club


CC Community College


CC Companion of the Order of Canada


CC Company Commander


CC Compassionate Conservatism (George W. Bush campaign)


CC Competence Center


CC Competition Commission


CC Competitive Category


CC Compilation Control


CC Complaints Committee


CC Complications or Comorbidities (diagnosis related group descriptions)


CC Component Check


CC component command (NATO) (US DoD)


CC Component Cooling


CC Component Coordinator


CC Composite Clock (SONET)


CC Composite Command


CC Composite Component


CC Compression Cache


CC Compression Chamber


CC Computacenter (European IT services company)


CC Computational Component


CC Computer Center


CC Computer Community


CC Computer Controller


CC Computer Crime (insurance)


CC Computing Center


CC COMSEC Custodian


CC Concealed Conduction


CC Conclave (online gaming community)


CC Concord Coalition


CC Concurrent Copy (disk storage management)


CC Condition Code


CC Conference Call


CC Configuration Control


CC Congestion Controlled (IPV6)


CC Connecticut College (New London, CT)


CC Connection Confirm


CC Conseil des Communes (French: Council of European Municipalities)


CC Constant Current


CC Constituent Code


CC Construction Component


CC Constructive Criticism


CC Consumer Confidence


CC Contact Center


CC Contagious Conjunctivitis


CC Contaminant Category (land disposal restrictions)


CC Continental Counsellors (Institution of the Baha'i Faith)


CC Continuity Cell (ATMF)


CC Continuity-Check (ITU-T)


CC Continuous Casting


CC Conto Corrente (Italian: bank deposit)


CC Contracted Care


CC Control Center


CC Control Channel


CC Control Computer


CC Control Console


CC Control Language


CC Controlled Circulation


CC Contrucción Comparativa (Spanish grammar)


CC Convolution Coding


CC Convoy Commander


CC Convoy Commodore


CC Coordination Center


CC Coordinator Council (Maquis Forces International)


CC Copie Conforme


CC Copper Citrate


CC Copy Cat


CC Core Competency


CC Core Component


CC Corner Card (philately)


CC Cornwall College (UK)


CC Corpo Dei Carabinieri


CC Corporate Center (Sprint)


CC Corps de Cadets


CC Corpse Camping (gaming)


CC Corrado Conforti


CC Correctional Custody


CC Corrente Continua (Spanish: Direct Current)


CC Corrosion Coupon


CC Corte de Constitucionalidad (Guatemala Central America)


CC Cost Center


CC Cost Control


CC Cost Cutting


CC Cotton Candy


CC Country Code


CC County Commissioner


CC County Coordinator


CC County Council


CC Coupe Cabriolet (Peugeot 206 CC model)


CC Coupled Cavity


CC Coupled Channel


CC Course Change


CC Course Chart


CC Covenant Christian (High School)


CC Cow and Calf (animal husbandry)


CC Crack Cocaine


CC Crane Commander


CC Crazy Chicken


CC Crazy Cool


CC Creative Commons


CC Creatures Community (game series)


CC Crew Certified (NASA)


CC Crew Chief


CC Crew Compartment (NASA)


CC Crimson Chin (Fairly Odd Parents TV show)


CC Cris Carter (NFL player)


CC Criteria Check


CC Critical Care


CC Critical Characteristic (automotive)


CC Cross Connector


CC Cross Country


CC Cross-Connect


CC Crosstalk Coupler


CC Crowd Control (gaming)


CC Crown Colony


CC Cruise Control


CC Cruiser


CC Cryogenic Calorimeter


CC Crystal Cathedral (Robert Schuller Center)


CC Crystal Controlled


CC Cubic Capacity


CC Cue Cap


CC Cult Classic (movie slang)


CC *** Correctione (Latin: With Correction; ophthalmology)


CC Curb Cock (construction)


CC Cursor Control


CC Curtice Cubic (MESFET model)


CC Cushion Craft


CC Custom Charges


CC Custom Combo (gaming)


CC Customer Care


CC Customer Contacts


CC Customs Clearance


CC Cut Cancel (philately)


CC Cut Corner


CC Cyber Cafe


CC Cyber Chat (RPG chat server)


CC Cybercity (Danish ISP)


CC Cybercom (computer company)


CC Cyclometric Complexity


cC Centicoulomb (electrical unit)


cc Cross-Class (Dungeons %26amp; Dragons gaming)
Reply:No, no in this context c/c means "centres" or "centers" if you like US spelling.
Reply:c/c stands for Cubic Centimeters. mm stands for Mili-meters.


C++ Help - Triangle problem?

Hey. I'm trying to do a program for school, and I'm haveing for loop problems. I'm trying to make a triangle that looks like this...





AC


A C


A C


A C


ABBB


something like that. Anyway, I basically need to add another space between the A and C in each new row. I was thinking if I did something like





(for int j=0, j%26lt;N, j++)


{


cout %26lt;%26lt; var1 NUMSPACES var3 %26lt;%26lt; endl;


}


Is there a way I can make a variable represent spaces? Like, NUMSPACES = 0, and have the code know that 0 is the number of spaces? so when I change it to NUMSPACE = 2, it knows that I want two spaces?

C++ Help - Triangle problem?
Not sure if anybody should be answering this, but I'll give some useful pointers.





First, you could do something like the following to write out one space:


cout %26lt;%26lt; var1;


cout %26lt;%26lt; ' ';


cout %26lt;%26lt; var2;


cout %26lt;%26lt; endl;





Now just find a why to execute the line with the spaces the number of times you need it. (hint: this exercise is meant to teach you about nested loops)





For extra points, 'NUMSPACES' could be a variable, but maybe not of the number of spaces. Rather, think of what other types a variable has.





Oh and in python one could indeed do something like " "*3 and get 3 spaces. But that's just a shorthand.
Reply:Perhaps this is overcomplicating things? Just change the value for baseSize to make it bigger/smaller.





void outLine(char, char, char, int);


int baseSize=4;


int main(int argc, char* argv[]) {


for (int n=0; n%26lt;baseSize; n++) {


outLine('A',' ','B',n);


}


outLine('A','B','B',baseSize);


return 0;


}





void outLine(char bChar, char fChar, char eChar, int baseWide) {


cout %26lt;%26lt; bChar;


for (int j=0; j%26lt;=baseWide; j++) {


cout %26lt;%26lt; fChar;


}


cout %26lt;%26lt; eChar %26lt;%26lt; endl;


}


C++, Visual Studio and Web Design?

Do I need to learn C# or VB to develop with the .NET Framework ? If not, is it better with C# or VB ?





The reason I ask is because by learning C++ I can apply that knowledge to things outside the .NET framework. However, if I choose C# Im stuck with .NET.





Your help and insights are appreciated.

C++, Visual Studio and Web Design?
I would suggest C# or vb. The reason that I suggest this that all good programmers should be able to use the best tool for to solve any problem. Like perl if you have to parse a bunch of text. vb or c# if you need a quick data driven website. C++ if you have to do any rigorous network programming. C++ and Assembly for intesive graphics and real time programming.





Good programmers have to adapt to the problem that they are solving.
Reply:You may use C++.NET. There's even a free (for a limited time) version with optimized compiler and a complete IDE: Visual C++ Express.


It is _not true_ that the only way to use C++.NET in Web applications would be CGI, and it is _not true_ that it is slower.


You should know that you can effectively create ASP.NET Web Pages with C++.NET (see the link below).


Let me quote MS' George Shepherd:


"The final, and perhaps most compelling reason to use Managed C++, is that the Microsoft C++ compiler is optimized. It's the most evolved and best-tuned compiler available for generating code to run under the CLR."
Reply:C++ uses the CGI (Common Gateway Interface) to interact with the web, which can create overhead and sluggishness on dynamic webpages. C# (in my opinion) would be the better choice between C# and VB, though as long as you have access to .NET I would recommend using ASP.NET (Active Server Pages), and reserve C# for back-end server-only processing.





Bottom line: C++ will be slightly slower than your other two alternatives.


C++ computer programming question 2.please help!?

Write a function with int* argument a and int arguments length and x which returns the number of elements x in the memory block a.


The following sample tasks may help:





sample task 1


write a function with a const char* arguments, an int argument length and a character argument c,which which returns the number of characters c in s








int count(const char* s, int length, char c)


{


int i, cnt;


for(i=0, cnt=0; i%26lt; length; ++i)


if(*(s + 1) == c)


++cnt;


return cnt;


}








sample task 2:


write a function with int* argument a and int argument length which reurns the maximum element in the memory block a





int max_element(int* a, int length)


{


int i, max;


for (max = *a, i=1; i%26lt;length; ++1)


if(max%26lt; *(a+i))


max= *(a+i);


return max;


}

C++ computer programming question 2.please help!?
int countIt(int* a, int length, int x)


{


int finds =0;


int i;


for (i=0; i%26lt;length; ++i)


if(x == *a) {


finds++;


}


return finds;


}

gardenia

Cannot switch to C: drive from c:\documents and settings in command prompt in Windows Xp pro,?

Hi





I have this weird problem come up.I cannot switch to root directory c: in command prompt on windows xp pro,I can switch to other drives without any problem but cannot switch to c: from command prompt.When I open cmd its default prompt is c:\documents and settings and I cannot swtich to C: I have tried cd c: and cd\ still no luck.





Kindly need advice from someone who had this problem or who knows about such problems.





Thanks

Cannot switch to C: drive from c:\documents and settings in command prompt in Windows Xp pro,?
You probably don't have administrative rights, so your computer won't let you get into a directory you don't have rights to.


Anyone had a c section due to narrow pelvis?

My doctor told me today there is an 80% chance that I will have a c section because my pelvis is very narrow and the baby's size is bigger than it is supposed to be. She does not like to go for c section right away till it's her last resort so she said she will let me try to deliver naturally first and if it doesn't work she will perform a c section. I'm not really scared of a c section, I think it will be easier for me anyway, but I'd like to know if anyone has been told the same thing and how did it turn out? Did you end up with a c section or did u give birth naturally? I dunno but I have a feeling that n my case a c section will be safer for the baby.

Anyone had a c section due to narrow pelvis?
i did!! i tried pushing for two hours but she just would not crown, or come down anymore, so they did a c section and she was 8 and half pounds, so i the doctor said my pelvis must have not been big enough for her to go through. Look i Csections sounds scary but it's not that bad, if it's what you got to do, then just relax and you will be OK, they pain is managable and you will be feel better after a week or so. You don't wanna force the baby to come out with forceps and end up tearing up your vagina and brusing the baby' s head, so do what is safest for the baby when the time comes
Reply:Your doctor is correct.
Reply:I had a narrow pelvic. And when I gave birth with my first he cracked my inner pelvic bone. And yes it hurt.


And they should of done the C-section. But I had a doctor not know me that well in with me. My first doctor was very mad they did not contact her.


Long story short. Have a exam on your next appt. have them rate you on your spread. if you have not had any more softening. ask about going for the C-section. Cracking your pelvic sucks. i am now 40 and have pain in that spot when it rains.


I feel like one of those old ladies that says oh Margret it is going to rain i can feel it in my knees.!,





I had my other two vaginal and it was much easier and I had healed up well from my first son.
Reply:Unless you have previously fractured your pelvis or had the disease Rickets your pelvis is fine!





I had a c-section and found out afterwards in my operative report that they said it was due to CPD, cephalopelvic disproportion, aka the baby is to big and my pelvis is no good. I did some research and found out that true CPD is rare and only caused by the 2 reasons I listed above, fracture or disease!





OB's are pushing c-sections because they are easier to schedule and the hospital makes more money from them. You don't have to take my word for it either here is some info that you might be suprised to know:





http://www.youtube.com/watch?v=R3WWNKurK...





http://www.youtube.com/watch?v=roFVkDV45...





http://ican-online.net/resources/white_p...





Other books to check out would be:


The Thinking Woman's Guide to a Better Birth by Henci Goer


%26amp; or Obstetric Myth Versus Research Reality by Henci Goer





Either way do NOT let your provider/doctor scare you into unnecessary surgery.





I am planning a homebirth (after cesarean) this time around, and both my midwife and new OB are supportive of a vaginal delivery despite the original diagnosis of CPD...[Boy I can't wait to show everyone that my first doctor didn't know what she was talking about.]





IT IS A MYTH THAT C-SECTIONS ARE EASIER...maybe the delivery part but recovery is way worse than labor!!! I was laid up for weeks afterward...and I wasn't allowed to pick up my baby he had to be handed to me. My husband couldn't stay with me at night and I was in the hospital for 4 days. Since my husband couldn't stay the baby had to saty in the nursury, since I couldn't pick him up! I wasn't allowed to eat for 4 days. And I wasn't the first one to hold him after he was born, infact I passed out just after birth. He was 2 hours old when I saw him.





The Dr. is just being a bully! If you don't believe me, Check out ICAN: International Cesarean Awareness Network, and their online group through Yahoo! So many people are misled and they think the doctor must know everything,,, Get several opinions from all sides! I urge you.








Also being on your back actually narrows your pelvic opening. By a lot actually... But that is the way dr.'s do it, because it is easier for them...I am not making this stuff up...I swear.





"Lying on your back collapses your pelvis, distorting its natural opening and decreases the diameter by as much as an inch." Birthin From Within by Pam England and Rob Horowitz...





When you consider that an inch is almost 2 cm, that is alot!!!
Reply:That happened to my mom when she was pregnant with me. Her pelvis was too narrow and I was too big for a natural birth, so they went ahead and delivered by C-section.





Best wishes with the remainder of your pregnancy and delivery!





Take care :)
Reply:Yes, but that was 29 years ago. I had 15 hours of labor and never dilated past 1. He went into distress and they quickly did a c section. He now has a degree in marketing from Penn State and doing great in his career. I love that c section scar!!
Reply:My sister inlaw has a small pelvis and she was induced 2 weeks early so the baby didnt get to big . she gave birth by vagina to a healthy 8pound 2 baby girl no problems . I would look into being induced early to try to prevent a c section


Difference between c, c++ & c+++?

what is the difference between c, c++ %26amp; c+++?





thank's in advance...

Difference between c, c++ %26amp; c+++?
C = an older, procedural programming language


C++ = a newer, Object-Oriented language


C+++ = a typo for C++ :-)





Almost everything you can do with C you can also do with C++. A C++ compiler can usually also compile and understand C programs, causing misconception by a lot of people that C++ is very similar to C, which is totally incorrect.





I've seen many resumes / CV's where people put C and C++ together as 'C / C++' (looks familiar?) in their skills list, and 99% of the time these people actually write C programs with a C++ editor and compiler. And if someone tells you: 'If you can program in C++, you can also program in C' or vice versa, you can be certain that this person is an expert in neither. The truth is, C++ is not similar to C more than it is similar to, say, Java or C#.





C++, being object oriented, is marginally slower compared to C, but the code is easier to design and maintain.
Reply:c is the original. it is touted for its ability in low level programming. (hardware level)





c++ is the offshoot. mainly used for object oriented programming. considered a higher level language than c.





c# (sea sharpe). based on c++. used for .netcentric programming.





good luck!
Reply:There's no such thing as c+++. At least I never heard of it. I have heard of B, C, C++, C#, D, and F#. Gee, aren't programmers creative. Ok, C was originally developed by Mr. Ritchie at Bell Labs for programming the UNIX operating system and applications. It is a structured based programming language consisting of mostly symbols and contains only functions. It supports the use pointers and structures. C++ is a superset of C, which means everything you can do in C, you can do in C++. C++ also add additional functionality and improvements, such as support for object-oriented programming through the use of classes supporting mulitiple inheritance.


C&A please come!!!!!! i have some serious questions 4 U!!!?

Hello c%26amp;a is any one there?? can you here me???????





Q1- Whats your favorite sport???


basketball


Q2- Who is your favourite anime character??


inu yasha


Q3- Who is your anime crush???


sango


Q4- What was the first anime you saw??


dragonball z


Q5- Whats your favourite colour??


green


Q6- How old are you??


15


Q7- Whats your favourite drink or drinks??


coke, red bull,


Q9- Whats your favourite food???


itallian yum


Q8- Whats your favourite hobbies???


video games, sports and anime





ok gotta go. *waves* c u pplz later

C%26amp;A please come!!!!!! i have some serious questions 4 U!!!?
1- Badminton


2- L or Kakashi


3- L


4- Pokemon


5- Blue


6- 14


7- Vault


8- Sushi or Ramen


9- Sleeping or Reading
Reply:1. none i hate sprts sorry ok fine basketball and dodgeball


2. gaara


3. gaara


4. pokemon and one piece


5. blue


6. not tellin


7. orange soda


8. abime reading, drawing


9. sushi and ice cream





~CaramelDucky♥
Reply:BASEBALL although i suck at it


uhh i would have to say SHIKAMARU


shikamaru hes hot adn hinata shes hot


dragon ball i think everyone saw either that or sailrmoon 1st


yellow


14


root beer apple juice


speghetti and sushi


reading writing watchin anime video games hangin with friends
Reply:Q1-Soccer.


Q2-Shirahama Kenichi


Q3-Sango!


Q4-Yaiba


Q5-Green too!


Q6-between 15 and 19.


Q7-Rootbeer, Cream Soda Fanta.


Q9-Rice!


Q8-Anime! and Science!





cya.
Reply:Q1- to play badminton to watch football





Q2 - Canti





Q3 - none?





Q4 - dragonball





Q5 - blue





Q6 - 15





Q7 - jones soda, milk tea





Q8 - pho, french fries





Q9 - Video games, girls, sports, anime, shooting,
Reply:1. Football I play it ;p


2.My fav anime character is Lucy from Elfen Lied


3.Crush? Ummm...I always liked Ryoko from Tenchi ;3


4.First anime was...ronin warriors


5.Red%26amp;black


6. 18


7.Hmmm....water xD


8.Food? Mexican food ;3 *hungry now ty*


9.Hobbies? Gaming,sports,drawing,collecting.





Bye-bye 0,0
Reply:1. Badminton and volleyball


2. kakashi


3. Kai Hiwatari


4. Cardcaptor sakura


5. Green


6. 17 turning 18 this august


7. coke, mountain dew, sprite


8.fav hobbies- paintind, drawing, singing


9. chinese food
Reply:1) soccer


2) haku


3) abel nightroad


4) sailor moon


5) red


6) 14


7) anything except alcohol


8) manga/anime/cartoons/comics, reading, games, daydreaming, sports...


9) idk
Reply:Q1- Whats your favorite sport???


~Tennis





Q2- Who is your favourite anime character??


~L/Ryuzaki





Q3- Who is your anime crush???


~L/Ryuzaki [lol]





Q4- What was the first anime you saw??


~Pokemon





Q5- Whats your favourite colour??


~green =]





Q6- How old are you??


~14





Q7- Whats your favourite drink or drinks??


~Water%26amp;lemonade





Q9- Whats your favourite food???


~Chinese %26amp; sushi





Q8- Whats your favourite hobbies???


~Tennis, volleyball, sleepovers ^^





cya later





[[edit]]





Innocent Bliss....i'll be turning 15 in dec. too! lol
Reply:Q1 - Volleyball


Q2 - Konata Izumi (Lucky Star)


Q3 - Lelouch Lamperouge (Code Geass)


Q4 - Kiki's Delivery Service


Q5 - Green


Q6 - 17


Q7 - Water, sprite


Q8 - Volleyball, track, anime


Q9 - BBQ anything
Reply:1) Favorite Sport?


%26gt; Soccer





2) Favorite Anime Character?


%26gt; Sabaku no Gaara





3) Anime Crush?


%26gt; No one at the moment really... maybe Soul from Soul Eater





4) First Anime I Saw?


%26gt; Dragonball -- but the first with me knowing it was actually anime --%26gt; Naruto





5) Favorite Color?


%26gt; Blue





6) My Age?


%26gt; 16





7) Favorite Drinks?


%26gt; Pop, Booster Juice, Energy Drinks... T_T





9) Favorite Food?


%26gt; Not sure, I also do like Italian... and GREEK!





8) Favorite Hobbies?


%26gt; Sports, Video Games, Anime, Cooking, Reading....








C'ya later ^_^
Reply:Q1- Whats your favorite sport???


Football/soccer what ever you call it....


Q2- Who is your favourite anime character??


Everyone in One Piece


Q3- Who is your anime crush???


Ishida Uryuu


Q4- What was the first anime you saw??


Doraemon


Q5- Whats your favourite colour??


Blue/black


Q6- How old are you??


23.... Yayahahaha! I'm the oldest here!!!


Q7- Whats your favourite drink or drinks??


don't have one


Q8- Whats your favourite hobbies???


watch anime, movies, books....


Q9- Whats your favourite food???


don't have one





*waves back...* Jaa....
Reply:Q1- Whats your favorite sport???


Tennis. I also love basketball, volleyball, and swimming. :)


Q2- Who is your favourite anime character??


I have a lot... Tamaki, Gaara, L, Inuyasha, Lucy, Misa, Rock Lee, Temari.... I can't really decide who my very favorite is


Q3- Who is your anime crush???


Pretty much all the guys from Q2 except Rock Lee. lol. Mostly L and Gaara.


Q4- What was the first anime you saw??


Naruto :) Well, actually it was probably Sailor Moon or DBZ, but Naruto is the first anime I ever watched when I new what I was watching.


Q5- Whats your favourite colour??


Blueee


Q6- How old are you??


13


Q7- Whats your favourite drink or drinks??


Uhhh... water (lol), coffee, Thai tea, Dr. Pepper...


Q9- Whats your favourite food???


CHOCOLATE!!! xD I love sweets! I'm just like L and Honey :D I also love Chinese and Japanese food.


Q8- Whats your favourite hobbies???


Being with my friends (if that's a hobby), sports (mainly tennis), anime, and a lot of other stuff.
Reply:ok!!i will answer this SERIOUS QUESTION!!





q1-WHAT IS YOUR FAVE SPORT???


BADMINTON





Q2-what is your fave animate character


KIBa and sANGO





Q3-WHAT IS YOUR ANIME CRUSH???


kIBA AND l lAWLIET


(YOU LOVE SANGO??ME ALSO!!*I'M NOT YURI*)





Q4-WHAT WAS THE FIRST ANIME YOU SAW???


DRAGONBALL Z!!





Q5-WHAT IS YOUR FAVE COLOUR??


RED AND BLACK!!





Q6-how old are u??


13 ^-^





Q7-whats your fave food??


i love fried chicken rice!!(malay food)





Q8-whats your fave drinks??


milo!!nyum nyum nyum..





Q9


whats your fave hobbies??


surfing internet and watching tv..





() ()


( '.) anime 4 life!!


%26gt;%26lt;


(you miss your cute buuny ^0^)





ok bubye!!*waves back*


see you later...
Reply:1) Ice Hockey


2) Sanzo from Saiyuki


3) Sanzo from Saiyuki


4) Yu Yu Hakusho


5) Blue


6) Older than 21


7) Ice cold Coke Classic! Alcoholic drink: Margaritas on the rocks with salt :)


8) Reading, anime, manga, traveling, shopping, messing around on the Internet, friends


9) Mexican, Italian, Oriental (Chinese, Thai, etc), East Indian





**waves back** See ya!
Reply:basketball


Gaara


Gaara


Naruto


Dark Purple


13


Pepsi


seafood


drawing, singing, and practicing magic tricks.
Reply:Q1- Whats your favorite sport???


tennis


Q2- Who is your favourite anime character??


konata from lucky star


Q3- Who is your anime crush???


edward elric ^^


Q4- What was the first anime you saw??


sailormoon


Q5- Whats your favourite colour??


yellow and red


Q6- How old are you??


14


Q7- Whats your favourite drink or drinks??


coke


Q9- Whats your favourite food???


sushi with wasabe


Q8- Whats your favourite hobbies???


anime, anime movies, drawing, collecting anime stuffs


:3
Reply:Q1- Whats your favorite sport???


-gymnastic





Q2- Who is your favourite anime character??


-Hitachiin Kaoru (OHSHC)


-Uchiha Itachi (Naruto)





Q3- Who is your anime crush???


- L!


Q4- What was the first anime you saw??


-Doraemon





Q5- Whats your favourite colour??


-blue





Q6- How old are you??


-16





Q7- Whats your favourite drink or drinks??


- coffee





Q9- Whats your favourite food???


- umm.. pocky?





Q8- Whats your favourite hobbies???


-sleep. zzZZzzzZZZ
Reply:1. Netball


2. Katara from Avatar


3. Sokka from Avatar


4. Sonic X


5. Red or Black


6. 12


7. Vanilla Coke


8. Sushi


9. Playing video games, Reading, Drawing, Writing Stories, And anything to do with Anime (dvds comic books etc.)


ANIME 4 LIFE!!!
Reply:Nope, can't hear you. You too far behind my computer screen, so I can't hear nothing.





Q1- Whats your favorite sport???


I LIKE FOOTBALL!!!(it ain't very girlish, but I don't care)





Q2- Who is your favourite anime character??


LAWLIET!!!!!!!!!!





Q3- Who is your anime crush???


Many of them. But I'll say Sesshomaru, for right now.





Q4- What was the first anime you saw??


TRANSFOREMERS!!!!(the really old version)





Q5- Whats your favourite colour??


LIME GREEN!!!!!!!(or blood red, I like both the same)





Q6- How old are you??


14 YEARS!!! (I be 15 in December)





Q7- Whats your favourite drink or drinks??


CHERRY PEPSI!!!!!!! or CHERRY LIMADE!!!!!!





Q9- Whats your favourite food???


CANDY!!!!!!! or APPLES!!!!!!!





Q8- Whats your favourite hobbies???


VIDEO GAMES, ANIME, DOODLEING, and SPORTS!!!!!!!





That was fun! YAY FOR FUN!!!!!! *hugs*
Reply:Q1-basketball!!!!


Q2-kyouya(ouran)


Q3-hitachiin hikaru!!!!! xD


Q4-drangonball


Q5-all!!!!!


Q6-14...


Q7-all juice drinks..


Q8-play computer n watch anime/manga...





*waves back* :)
Reply:Q1- Whats your favorite sport???


`none..I'm NOT athletic.





Q2- Who is your favourite anime character??


`TenTen, Neji and Suzumiya,Haruhi





Q3- Who is your anime crush???


`Deidara and Neji





Q4- What was the first anime you saw??


`Sailormoon





Q5- Whats your favourite colour??


`black





Q6- How old are you??


`13





Q7- Whats your favourite drink or drinks??


`water..I'm not allowed to drink coke/pepsi because of diabetes





Q9- Whats your favourite food???


`Shabu shabu yummy!


http://en.wikipedia.org/wiki/Shabu-shabu





Q8- Whats your favourite hobbies???


`reading fanfics, watching anime, opening my friendster,myspace,glitter-graphics,buzz... and youtube accounts and playing vside (vsiders m name is reikowentz143)
Reply:1.volleyball


2.sakura


3.i dont have one


4.sailor moon


5.pink n blue


6.14


7.coke


9.sushi


8.anime and computers
Reply:Q1- Whats your favorite sport???


soccer for playing and hockey is fun to watch!





Q2- Who is your favourite anime character??


Hijikata Toshiro, Mugen, Sakata Gintoki, Grimmjow Jaggerjaques, Ulquiorra Scheffer, Roronoa Zoro, Lawliet, Light (I have too many...)





Q3- Who is your anime crush???


Gintoki, Hijikata (Again, too many to list, so I'll just list these two...probably all my fave characters..)





Q4- What was the first anime you saw??


Naruto/Bleach/One Piece/Full Metal Alchemist (same time) unless you include those anime I wuz forced to watch as a kid like Anpanman, Pokemon and Doraemon...





Q5- Whats your favourite colour??


Blue/Green (tie)





Q6- How old are you??


13 (am I young or something?...same age as Kiran)





Q7- Whats your favourite drink or drinks??


Calpisu





Q9- Whats your favourite food???


Choco--...chocolate...





Q8- Whats your favourite hobbies???


anime and writing/drawing stories!! (I have one 375 page story (still being worked on that I started a month ago) and one I just started that's currently 12 pages (started this week))





*waves back* ^.^ cya!! I kno, I'm lame...
Reply:Q1- Whats your favorite sport???


SOCCER!!!!!!!!!!!!!





Q2- Who is your favourite anime character??


Itachi Onii-san!!!!





Q3- Who is your anime crush???


Itachi....duh!





Q4- What was the first anime you saw??


Monster Ranchers, I loved it!





Q5- Whats your favourite colour??


green





Q6- How old are you??


19





Q7- Whats your favourite drink or drinks??


powerade (green, white, pionk, yellow), vitamin water (focus, power-c)





Q9- Whats your favourite food???


hmm....mexican and italian





Q8- Whats your favourite hobbies???


writing, reading, drawing, watching anime, collecting things, travelling, hanging out with my friends and family (C%26amp;A included!!)
Reply:Q1- Whats your favorite sport???


To watch~ Baseball and Hockey


To play~ Handball, Soccer, Tennis





Q2- Who is your favourite anime character??


Spike Spiegel (Cowboy Bebop)





Q3- Who is your anime crush???


Ranka Lee (Macross Frontier)





Q4- What was the first anime you saw??


Pokemon~ Spirited Away~ and then Naruto





Q5- Whats your favourite colour??


Green





Q6- How old are you??


19





Q7- Whats your favourite drink or drinks??


Tropicana Tropical Punch~





Q9- Whats your favourite food???


Anything Italian~ any kind of dessert/candy





Q8- Whats your favourite hobbies?


Eat, Sleep, Anime, Video Games, Movies, Biking, Exploring~





Laterz~~~
Reply:Q1- Whats your favorite sport???


basketball (I don't have any actually but I prefer basketball)


Q2- Who is your favourite anime character??


Zoro


Q3- Who is your anime crush???


Zoro and Sanji


Q4- What was the first anime you saw??


the first anime I saw after knowing what "anime" is, is Detective Conan.... but long ago when I didn't know what it was then it's an old anime called "Hey! Bumboo"


Q5- Whats your favourite colour??


Pink and Black


Q6- How old are you??


15 turning 16 this september...


Q7- Whats your favourite drink or drinks??


coke and any mango juice


Q9- Whats your favourite food???


itallian, Macaroni all the way!~


Q8- Whats your favourite hobbies???


anime, sleeping and internet surfing
Reply:1) to play=softball to watch=football


2) Shino Aburame


3) Shino


4) dragonball


5)black


6) um im not at liberty to say


7) um mock sangria, and rootbeer


8) show dogs, play video games, collect things


9) pasta
Reply:Q1- Whats your favorite sport???


uh... is running a sport? if it is then that's it


Q2- Who is your favourite anime character??


zaraki/gilgamesh/alphonse


Q3- Who is your anime crush???


Ise Nanao


Q4- What was the first anime you saw??


ranma 1/2


Q5- Whats your favourite colour??


green


Q6- How old are you??


18


Q7- Whats your favourite drink or drinks??


sprite, iced tea


Q9- Whats your favourite food???


MEAT!!!


Q8- Whats your favourite hobbies???


video games, Anime, arts (drawing and sculpting)
Reply:WILLZ BATTLE MEEEEEE





NAZ

aster