Friday, July 31, 2009

C-section or Vbac???

My first child was born via emergency c-section... 1 week late, 18 hours of induced labor %26amp; 2 hours of pushing before emergency c-section! My hospital, by policy does not do Vbac's. Should I seek another provider to try for a Vbac or just have the scheduled c-section? We want a lot of kids? How many c-sections are too many? I just don't know?

C-section or Vbac???
Any ceserean after 3 tends to run on the riskier side. I was told 3 should be the max. You should find a doctor/hospital that is willing to give you all the options not what they want for you. Then after careful consideration you should decide what is best for you. I want 6 children but it's not going to happen. I'll be having 2 or 3 more max.Good luck
Reply:Vbac's are all around better operations. Especially in your situation. Good luck.
Reply:Have you talked to your dr.? whats a Vbac? If you really want a natural child birth do what you should do to get that...
Reply:Here's the thing: You need to know WHY you had a c-section. Fetal distress, baby was stuck, malformation of the pelvis, there are a million different reasons. If the reason you had a c-section is circumstantial and is not a permanent condition, you owe it to your body to make the V-BAC attempt. I cannot stress how terrible a c-section is on the body. Every time you have one it gets more dangerous and harder to heal. It adds more and more scar tissue and just becoming pregnant again becomes more dangerous. Scar tissue is NOT designed to stretch, and thats what your uterus is SUPPOSED to do. If you want more kids, the safer route is V-BAC. A c-section is not just snip and go, it is ABDOMINAL SURGERY, and it is one of the most invasive procedures out there.





My daughter was born by emergancy C-section as well. Water broke, three hours later they cut me open because she was breech. I am currently awaiting my second baby, and I am having a V-BAC because I am a good canidate. Find a doctor (who is NOT with your hospital, because he will tell you no anyway) and ask if, in your case, you are a good canidate for a V-BAC. It is so much better for you and baby that way.
Reply:Seek another and fast i had 2 c-secs and its like making an appt. to be ran over with a bus no? Ok try v-bac... the first time maybe your baby was just to big... .Less stress for you the better mommy youll be!! and 3 are too many, but if you ask me 1 is too many!!! Owwww!!
Reply:schedule a C
Reply:That's a tough one. The reason why c-sections are usually required for the second pregnancy is if the first one was an emergency. Apparently the cut they do for an emergency c-section is different from that of a planned one, and this cut makes it hard for the mother to do Vbac for subsequent pregnancies. You could get a second opinion but I'm afraid the answer might be the same. Look at the bright side, no vaginal stitches, no sitz baths, and most importantly no embarrassing water breaking while standing in line at the supermarket!





Good luck!
Reply:C-sections are so wonderful. I loved having mine, compared to labor and birth. You can only have about 5 c-sections before your uterus starts to fall out. lol. Or at least that's what my doctor told me. The risk with Vbacs is your old scar rupturing during labor. And then you have to be rushed into surgery and it could kill you or your baby or even both of you. Which doesn't sound very pretty to me. That's why i had repeats.
Reply:Both C-section and Vbac are virtually the same in terms of risk. Meaning a repeat c-section is just as risky as a VBAC and vice-versa.





Most doctors recommend a repeat c-section because it's easier for them and more convenient, but you do have the final say. It's your decision.





Some hospitals do not allow VBAC and some do so if you choose it, make sure you know where you will be able to go.





Good luck!


How do i loop this program in C so that i can just start from the beginning again until i quit?

#include %26lt;stdio.h%26gt;


#include %26lt;stdlib.h%26gt;





main ()


{


float c,f;





char menu_conv;


printf("Conversion Program!!!\n");


printf("Enter the type of source temperature by typing c or f: ");





scanf("%c", %26amp;menu_conv);





if(menu_conv =='c' || menu_conv=='f')


{


switch(menu_conv)


{


case 'c':


printf("Enter a number in Celcius\n");


scanf("%f", %26amp;c);


f= (9/5)* c+32;


printf("%f degrees celcius = %f degrees fahrenheit\n", c,f);


break;








case 'f':


printf("Enter a number in Fahrenheit\n");


scanf("%f", %26amp;f);


c=(5/9)*(f-32);


printf("%f degrees fahrenheit = %f degrees celcius\n", f,c);


break;





default:


break;


}


}


else


{


printf("Invalid choice!\n");


}

















return 0;





}

How do i loop this program in C so that i can just start from the beginning again until i quit?
i'll write it in C++ so you can change it to C


after the main define a while loop on a char like this


char x;


cin%26gt;%26gt;x; --%26gt; (input x)


while ( x != eof()) (if the value doesn't equal to the end of file)


{


(your program)


}


cin%26gt;%26gt;x; --%26gt; (input again)


} (end of main)
Reply:surround it whith a while








menu_conv='x';


// pressq to quit the loop.


while (menu_conv != 'q' ) {





//


scanf("%c", %26amp;menu_conv);





if(menu_conv =='c' || menu_conv=='f')


{


switch(menu_conv)


{


case 'c':


printf("Enter a number in Celcius\n");


scanf("%f", %26amp;c);


f= (9/5)* c+32;


printf("%f degrees celcius = %f degrees fahrenheit\n", c,f);


break;








case 'f':


printf("Enter a number in Fahrenheit\n");


scanf("%f", %26amp;f);


c=(5/9)*(f-32);


printf("%f degrees fahrenheit = %f degrees celcius\n", f,c);


break;





default:


break;


}


}


else if (menu_conv != 'q')


{


printf("Invalid choice!\n");


}








}
Reply:hey try this. i have made some changes and the changes are in capitals. good luck.





main ()


{


float c,f;


CHAR ANSWER;


char menu_conv;


ANSWER = 'Y'


WHILE (ANSWER)


{


printf("Conversion Program!!!\n");


printf("Enter the type of source temperature by typing c or f: ");





scanf("%c", %26amp;menu_conv);





if(menu_conv =='c' || menu_conv=='f')


{


switch(menu_conv)


{


case 'c':


printf("Enter a number in Celcius\n");


scanf("%f", %26amp;c);


f= (9/5)* c+32;


printf("%f degrees celcius = %f degrees fahrenheit\n", c,f);


break;





case 'f':


printf("Enter a number in Fahrenheit\n");


scanf("%f", %26amp;f);


c=(5/9)*(f-32);


printf("%f degrees fahrenheit = %f degrees celcius\n", f,c);


break;





default:


break;


}/*END OF SWITCH*/


}?*END OF IF*/


else


{


printf("Invalid choice!\n");


}?*END OF ELSE*/





PRINTF ("PLEASE TYPE Y IF YOU WANT TO CONTINUE,ELSE TYPE N.\T");


SCANF("%C",%26amp;ANSWER);


}/*END WHILE LOOP*/


return 0;


}/*END OF MAIN*/


A.F.C. **** A.S.C. **** A.C.E. **** What are these?

In the openninging credits of a film by the name of the cinematographer you can see "A.S.C." or "A.F.C." or some other acronyms.





By the name of the editors there's sometimes a "A.C.E." written down.





Does anyone know what these are? Are they some kind of award or qualification? Can you explain please?





Are there anymore of these around?

A.F.C. **** A.S.C. **** A.C.E. **** What are these?
ASC is the American Society of Cinematographers.


AFC is the Australian Film Commission.


ACE is the American Cinema Editors.





They're film bodies that the cinematographers belong to.
Reply:A.F.C. stands for A Flaccid C**k


A.S.C stands for A Stiff C**k


I don't know what the other one is sorry.





Thanks Alfie.........too much c*** on the brain makes you retarded
Reply:To Nikki:





A Cock Ejaculating?





What do you think?!
Reply:Yes, it's a qualification: the 'C' means cinematography, not too sure about the others.
Reply:to alfie. yep i think your right..lmao....


Monitoring AFTER c-section??..please..only compassionate people answer?

is it normal for someone to monitor you after you've had a c-section


a woman who was in the surgery room with me during the c-section,was told to sit with me for a couple of hours after the c-section in the recovery room?





is this normal procedure?she said it was,others have told me its not


and the thing is that the doc/butcher who did the c-section injured me in the process,not enough so that its obvious to prove,but enough so that i have had problems ever since!!!





anyway,...is it normal to have someone monitor you AFTER the c-section??(i believe that he may have perforated my uterus,then stitched it,or something similar)


my concern is that i wont be able to have another baby(this was my first)and i believe at the very least he weakened my uterus


thanks

Monitoring AFTER c-section??..please..only compassionate people answer?
Maybe the doc/butcher knows what he did and had the nurse sit with you to cover his behind if you what I mean.





You could have an ultrasound and find out about your uterus. I would hate to think you would have to worry about if you could have more children. I would get it checked out.





And no, it is not normal for a nurse to sit with you in recovery after a C-section.
Reply:A C-section is an invasive surgical procedure, and yes, monitoring after ANY surgical procedure is not only normal, but good medical practice. They are watching you for signs of abnormal bleeding, for reaction to anesthesia, etc., etc. I was monitored for six hours in recovery after an emergency c-section, and then had nurses checking on me ever 15 minutes for the remainder of the day.





Anyone who tells you that's it's NOT normal has not had careful after-surgery care.





I don't know what you think a c-section is, dear, but having a c-section means that they have to CUT the uterus. I'm not sure what you mean by "perforate", but if it was an emergency c-section, then he had to go in as fast as possible, slice the uterus and remove the baby. After it was cut, then the uterus was stitched back together, along with the incision made in your abodomen.





Unless there were dire complications (rare), you will probably be able to have another baby. My first child was a c-section, and my second was delivered naturally, so there was no problem with "tearing" or "weakening". Granted, my doctor had an anesthesiologist on call during the second labor as a safety measure, "just in case", but again, that was only caution on his part. The uterus did just fine. Just give yourself plenty of time to heal before getting pregnant again.





If you don't trust your doctor (it doesn't sound like it), then consider using a different doctor for your second pregnancy.
Reply:after all surgies there is a recovery room nurse that monitiors a patientce condition in the recovery room, but did you hear him tell his operator room nurse to monitor more closely then a normalbecause if that is the case that is odd but not to have a normal recovery room nurse, you are legelly entittled to your medical records,and can do so by going to the hosipal medical records dept. and filling a request. I would start there, go to a highlly recommended ob/gyn and tell them your situtation and they can get copies of medical records and possibly do a ultrasound


hope this helps


good luck and god bless
Reply:Completely normal and varies on each hospital's protocol, which is why you've heard differing answers. They just monitor for blood loss, effects of the anesthesia, etc.


No worries and I hope you're feeling ok.





EDIT TO ADD:


Even if this wasn't your hospital's protocol, each patient is different. What is done for you may not be done for Jane Doe and so on. If you truly are worried, see another physician (or two or three or four) for their professional opinion. Once you get that, you might need to find an attorney.


Good luck to you.
Reply:check with a differant trusted docter and a lawyer
Reply:I'm wondering what kinds of problems you are having. Problems like constipation and muscle pain are normal after c-sections (and probably vaginal births, though I wouldn't personally know) because of the dehydrating effects of the drugs and the relocation of your intestinal tracts during the course of pregnancy. I had a c-section about 4 months ago and severe pain on one side of my incision. The issue was that my son was tilted awkwardly in the uterus and the doctor had to cut far to the right and pulled a lot at the skin and muscle. If it's an issue like this, the doctor may have only injured you as a necessary step of getting your baby out safely. I hope it was a case like this, rather than an incompetent doctor.





As for the question, my c-section wasn't monitored by a sit-in, but the nurses came in so often, it felt like they never left. I've never heard of the procedure; but honestly, I'm guessing it was for the doctor to be sure you were doing okay. Perhaps it was a difficult surgery.





Assuming you got the bikini cut in your uterine wall (which you may need to contact a ultrasound technician to find out for sure, since the cut in the uterus can be different from the cut in the skin) and you are relatively young, your uterus should not have weakened enough to keep you from having another baby. You may need to take a while to conceive to assure you are completely healed (my doctor told me 6 months, but I think a year or more is safer). Also, your next pregnancy may need to be more closely monitored than your first, which is normal for any prior c-section. Hopefully, you are a candidate for VBAC (Vaginal Birth After Cesaerian), but even if you aren't, good luck on your next.





Best Wishes.
Reply:If you gave birth to a baby via c-section, then of course the doctor 'perforated' your uterus ... he had to cut it open to remove the baby. Some doctors are really nice and have people that sit and monitor your condition after a c-section to make sure you don't have to endure any pain longer than necessary, and to make sure that you are awake and aware after the surgery. Others think it's okay to let the family do that ... I like the 'professional monitor' best. You may feel uncomfortable, still, and that is something you need to discuss with the doctor who did your surgery. Yes, the doctor did 'perforate' your uterus and then stitch it up ... how else could your baby have been born via a c-section? Yes, you WILL be able to have another child (or more) but you may need to have the child(ren) born via c-section too, depending on the way the 'cut' was made, and how well you 'recover' from your surgery. They now allow SOME mothers who had c-sections to deliver vaginally, but MOST mothers have another c-section, with NO PROBLEMS.
Reply:well, all c sections weaken a uterus since they have to cut through it to get the baby out. i've never heard of having to be monitored afterward. i think you should find another doctor after you have healed and have them check it out.
Reply:I've had a c-section. I didn't have someone sit with me although the nurse did come in regularly to check on me.
Reply:Honey, they had to cut into your uterus to deliver the baby, thats where the little guy was living, so yeah, they perforated it, in a sense. And randomly asking who ever asnwers the phone at a hospital not a good thing. Every case and every body is different. You could have been monitored for a variety of reasons, blood pressure a bit off, heart rate odd, etc. Not every body reacts well to trauma of surgery, anesthesia, stress of hospital. I would rather have been monitored than left alone and something go wrong. What kind of problems since then and how long ago was this c-section?
Reply:They want to assure you have no ill effects from the anesthesia.





That's normal with most surgical procedures. It has nothing to do with the doctor screwing up.
Reply:I had someone monitoring me. Every so often she was push down on my tummy to get me to start contracting!? She would monitor my pain level and see when I was ready to go see my babies.
Reply:It's common for hospitals to have " sitters" as they are called, but they are generally NOT for patients like you. They are usually used for combative or angry patients. Of course, your hospital can have a different policy than the one I work for. If you are truly concerned about the things you are describing, I really urge you to get a follow up with a new doctor ASAP for a second opinion. At the very least, you can get peace of mind and, if the doctor was a rough as you say, you can help prevent others from the same treatment you received.





I am so sorry you had to endure this but congrats on your baby!

garden flowers

MLB Fantasy: C Crawford for T Hunter? I need Steals. I'm 2nd in HR, 1st in RBI's and 5th in runs.?

I'm trying to get rid of 3 Twins...cause when they get shut out so does my team...





T Hunter's last month's stats: (Career Year, on a good Offience)


H/AB R HR RBI SB AVG


23/87 15 6 14 0 .264





C Crawford last month's stats: (Ok year, on a shitty Offience)


H/AB R HR RBI SB AVG


24/87 15 0 5 12 .276





Should I ask for more? A pitcher: SP or RP?





Starting Lineup:





Mauer, C


Morneau, 1B


Cano, 2B


C Guillen, 3B


Hunter, OF


D Young, OF


C Hart, OF


C Duncan, Util





Reserve:


F Sanchez


N Markasis





The guy I'm trading with has also has Figgins, any thoughts?


His best pitcher according to ERA is Gil Meche or Jered Weaver.


His RP: Putz, Reyes, Weathers, Saito

MLB Fantasy: C Crawford for T Hunter? I need Steals. I'm 2nd in HR, 1st in RBI's and 5th in runs.?
do it man...trust m


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

Write a functiion with double* argument a and int argument length which returns the minimum element 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 1.please help!?
double min(double* s, int length)


{


double min = *s;


int i;


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


if((*s) %26lt; min ) {


min = *s;


}


return min;


}

calling cards

A,b,c are three positive integers and 2s = a + b+ c.If(s – a):(?

a,b,c are three positive integers and 2s = a + b+ c.If(s – a):(s –b):(s – c) = 1:7:4,then the ratio a:b:c is-





"give calculation process"

A,b,c are three positive integers and 2s = a + b+ c.If(s – a):(?
2s = a + b + c





(s-a):(s-b):(s-c) = 1:7:4





from the ratio equation there, we know...





s - a = 1 which becomes a = s - 1


s - b = 7 which becomes b = s - 7


s - c = 4 which becomes c = s - 4





Plug those into the


2s = a + b + c equation to find s.





2s = (s - 1) + (s - 7) + (s - 4)


2s = 3s - 12


2s + 12 = 3s


12 = s





So....


a = s - 1 = 12 - 1 = 11


b = s - 7 = 12 - 7 = 5


c = s - 4 = 12 - 4 = 8





So...


a:b:c: = 11:5:8
Reply:2s = a + b + c


(s-a):(s-b):(s-c) = 1:7:4





Therefore


s - a = 1


hence a = s - 1


s - b = 7


hence b = s - 7


s - c = 4


hence c = s - 4





substituting these values in the equation


2s = a + b + c


2s = (s –1) + (s – 7) + (s – 4)


2s = 3s – 12


2s + 12 = 3s


12 = s


Then


a = s – 1 = 12 – 1 = 11


b = s – 7 = 12 – 7 = 5


c = s – 4 = 12 – 4 = 8


Putting these values in the ratio,


a:b:c: = 11:5:8
Reply:take a look the link to solve ur problem. it's a kind of heron's formula.





hope can help u.


thanks
Reply:a:b:c is 11:5:8





s-a=1,s-b=7, s-c=4


a+b+c=2s =%26gt; s-1 + s-7 +c= 2s


c=8


s=12


b=5


a=11
Reply:The first two answers are superb..follow them and get your problem solved...... :))
Reply:2s = a + b + c


(s-a):(s-b):(s-c) = 1:7:4





Therefore


s - a = 1


hence a = s - 1


s - b = 7


hence b = s - 7


s - c = 4


hence c = s - 4





substituting these values in the equation


2s = a + b + c


2s = (s –1) + (s – 7) + (s – 4)


2s = 3s – 12


2s + 12 = 3s


12 = s


Then


a = s – 1 = 12 – 1 = 11


b = s – 7 = 12 – 7 = 5


c = s – 4 = 12 – 4 = 8


Putting these values in the ratio,


a:b:c: = 11:5:8


C section question?

can c-section be elective? what are some reasons for c-section besides the obvious medical reasons? and if it is elective-able, will ur insurance cover it or is it something you have to pay for on your own?





i just asked the question about the amniotic fluid but i am really scared and concerned about labor because my skin is super sensitive down there. it even rips at the slightest tug and im afraid my baby might make it worse. i don't have much longer (37w) and im thinking about talking to my doctor about a c-section. plus i have tested + for group b strep so wouldn't it be better if i had a c-section? baby would be at less of a risk? i just need some reassurance.

C section question?
C-sections are for reasons like breech presentation, or a baby that measures large, etc... the group B strep, that's not a biggie they would run the baby on some antibiotics to be safe. And sweetie, the healing from a csection is longer than a vaginal delivery. I had my daughter almost 13 months ago and still have pinching feeling if I move wrong. There's some med's they can give you like an epidural, nubane then following if you have pain their are pain meds available for pain management. You need to talk to your OB and probably should do it soon... if that baby decides to come, they're not going to want to chit chat about you having a section...


best wishes
Reply:I had to have a csection cause my babys head would not go past my pelvic bone...... ( i tried for 16 hours to push and he just would not come down) My insurance paid for it...... my bay was not a risk


Toyota echo a/c belt squeal with a/c OFF!?

howdy-i have a 2001 echo that last winter burned off the a/c belt. at the time, the a/c compressor pulley didn't move by hand at all. i thought perhaps there was moisture within the compressor that froze which fried the belt. to get thru the winter, i used a smaller belt and bypassed the compressor. this summer i installed the appropriate belt for a/c. on occasion, about every day, sometimes 2-3 times per day for about 5-10 seconds per episode, the a/c belt squeals loudly, usually at idle or low speeds and sometimes while turning. this happens with the a/c on or totally off. any idea on my problem??? thanks, rick

Toyota echo a/c belt squeal with a/c OFF!?
As you know, you have to have the belt in order to run the alternator and water pump. You don’t necessarily have to have the a/c compressor or a/c, so sometimes the belt runs without the compressor running. In order to do that, there is a clutch on the front of the compressor that cuts the compressor on and off. When it is off, the belt still has to turn, so there is a bearing in that pulley that allows the pulley to “freewheel.” It is part of the a/c clutch assembly. If the bearing fails and seizes, the pulley will cease to turn, causing the belt to squeal like crazy. The assembly is available without the compressor from Toyota for a little over $300, and you need one. Yes, you can find an aftermarket compressor for less that comes with the clutch, but I have never had the first success with aftermarket a/c components. A/c work is EXPENSIVE, so you just have to decide if it is worth it. Sorry for the bad news.
Reply:Could be the bearing in the ac motor,try spraying the belts with shure grip first.


Anybody knows website for C or C++ Project ( Pls Read Details )?

Hai friends, I need some sample project on C or C++ to do my academic system level programming project in C or C++. anybody knows any website for C, C++ Projects. can u pls tell me the websites ?

Anybody knows website for C or C++ Project ( Pls Read Details )?
www.programmersheaven.com


www.codeproject.com


http://www.cprogramming.com/cgi-bin/sour...
Reply:jeyaganapathi hi dear friend and here is the link you need





http://www.google.co.uk/search?hl=en%26amp;q=w...
Reply:www.sourcecodeworld.com


www.planet-source-code.com
Reply:hi


You can get numerous prgrams and project source code on


www.shivprasad.com


or


programmersheaven.com


Regards

pokemon cards

Why do some electronics use A/C power, while others use D/C?

I am a pilot learning the electrical system of a complex jet. The aircraft has two different electrical systems, and A/C system, and a D/C system. I understand the inherent differences between A/C and D/C power, however when I started to think of why some devices use A/C power, and why others use D/C power, I realized that I don't know why.





Why is it that some electronic devices use A/C power, while others use D/C power? What is the benefit of using one over the other?

Why do some electronics use A/C power, while others use D/C?
Power distribution can be done most efficiently with three phase AC. Without going into details it simply takes fewer pounds of copper. Unlike ground based systems aircraft generally use 400 Hz AC. The higher frequency results in smaller lighter transformers and smaller lighter actuators (servo motors). This is because one can get the same magnetic flux with less iron at a higher frequency!





Motors and lighting systems can be made to run from AC. Electronic circuits for communications, navigation and instrumentation typically requires DC. In general electronic equipment (apart from the power electronic devices used to control AC) requires a steady time invariant voltage source (DC). Fewer transformers would be required if DC power is distributed to the instrumentation. It would be possible for each instrument to have it’s own DC supply which could be supplied with AC power to be converted but it would be more efficient in many cases to use fewer DC supplies and have the DC distributed. The electronics needs a supply with a constant voltage to function.





Note in a similar way your PC at home is supplied with 120 VAC but the power supply in the computer converts that AC voltage to a number of DC values for the electronics (typically 3.3, +5, -5, +12 and –12).
Reply:Hi Jason,


The short answer is - there are lots of reasons. One of the biggest reasons AC is available on the aircraft is that the generators produce AC. Most all the avionics and nav equipment uses DC, many of the electric motors use AC.
Reply:electronics needs DC power (for expert: except power electronics). Some electronic devices which work on AC voltage, has a built-in converter. the rest devices ,which work on DC voltage, needs an external transformer (AC to DC converter) to get it work.





the difference is some devices has a built-in converter, and other does not have.


C-section or natural labor, which is worse?

I 've had one emergency c-sec, was put to sleep, %26amp; woke up to docs. pulling %26amp; tugging on my abdomen...i thought i would fall off the table, %26amp; felt as if they knocked the wind out of me. I couldn't get out of bed unasisted, had trouble even holding my child. The recovery was hell...





I'll be giving birth again very soon....%26amp; have the option of a c-sec or vag. delivery....





My sister in law, (who gave birth vaginally) on the 17th says that a c-sec doesn't compare to vag. delivery! That recovery from a c-sec is nothing compared to pushing a baby out of your ***** !





What do you think? What was your experience..? Which do you think is worse?

C-section or natural labor, which is worse?
I've only delivered vaginally, but I can say that the recovery was nothing! With my first, I was sore for a day and with my second I wasn't sore at all...probably bcs I didn't have an episiotomy with my second.





A friend of mine had both a vaginal and a c-section. The c-section was much worse for her. Plus, she doesn't like taking pain meds, which she had to take and while nursing. :(





As for what your sil said...yes sure a vaginal delivery is more work, but it is a significantly less painful recovery. Plus, you have to stay in the hospital longer. I personally hate hospitals and left less than 24 hours after my girls were born. I couldn't imagine having to stay in the hosp. for 3 days.
Reply:well I had both of then I thought that the c-sen was very because I had staples about 30 of then I could hardly walk I could use the bath right I had to take some pills to make me .And had to wear some tighs around on my feetI had to go to the doctor every two week until I was heal up and got to staples out of my stomach.
Reply:My first child was born by emergency c-section, but I have an idea of what vaginal delivery would be like as I was in the process of pushing - she was too big and got stuck in the birth canal. I was given an epidural and the c-section performed while I was awake. I had dissolving stitches so never had to have staples removed or anything like that. I admit the pain after the meds wore off was bad but when it came to my 2nd child the thought of going through the pain of labour again terrified me more than the c-section! I chose to have a 2nd c-section. Once again I was completely awake the entire time. My 2nd recovery was a lot quicker and less painful. I was walking around unaided as soon as they allowed me and even checked myself out of hospital a day early (with the Dr's ok). Reading everybody elses answers though leads me to believe that they do things differently in different countries...I gave birth in South Africa and never had any of the problems or symptoms that some of the other ladies have had. A friend of mine had a c-section in the UK 2wks after I had mine in SA and she also had a terrible experience.
Reply:C section is definitely worse the pain is unreal afterwords and last so much longer as to having a baby natural the affects wear off so much sooner and I personally think unless deemed necessary it is much more safer for mom and baby to have natural birth.
Reply:C-section is definitely worse. You have a longer, more painful recovery period. It's also more dangerous to you, especially if they have to put you to sleep. I had episeotomies with both my babies. That was the worse part of my recovery -- pretty uncomfortable to sit, and even to walk sometimes. But I could still get around fine. My second recovery was much easier than my first. If you have the option, go with vaginal delivery. Good luck.
Reply:I only have had natural. It was't bad at all.
Reply:i have only ever had a vaginal delivery ,but thanks to my epidural it went very well. after wards i was very sore but that's natural i recovered very fast , and was able to hold my baby right away, and i didn't have to care for a surgical cut
Reply:i was put to sleep when i gave birth... no pain at all!!! i was given a sleeping pill and when i woke up i was told that i already gave birth... ask your ob-gyne about this procedure.
Reply:Not to sound too crude..... but honestly to me the only difference between the 2 is vaginally your crotch hurts for awhile (especially if an episiotomy or tearing) which is still less painful %26amp; easier to recover from than a c-section not to mention trying to loose weight it is easier if delivery was vaginally. I have had 3 births %26amp; long pregnancys. The first was 10 1/2 months %26amp; i was induced with potoessin off %26amp; on for 2 weeks before it actually worked. i was in labor for 20 hours with no drugs or epidural %26amp; recovery wasn't bad. My second was 10 months, had an epidural %26amp; emergency c-section %26amp; had excrutiating back pain, had alot of air trapped in uterus from being left open too long, huge blood clots, bad crampping %26amp; period was all screwed up. Third pregnancy exactly 9 months but baby in distress never decended, had an epidural %26amp; had emergency c-section which i then had the ultimate cramps from hell, hemmorriged %26amp; later period was every 2 1/2 weeks. So the ones who say oh c-section is a piece of cake .........they obviously never had one.


I would say try to go vaginally if your body/baby will allow you to %26amp; if a situation arrises %26amp; you must have a c-section then do that but at least try vaginally. Learn the lamaze breathing tecnique %26amp; use it, if you don't want to do it naturally (meaning-no drugs %26amp; a whole lotta pain like a sledge hammer hitting) you can have a epidural which will numb you from under the boobs down %26amp; you will be awake %26amp; alert for the birth. GOOD LUCK !!!
Reply:natural is best, better recovery too
Reply:If you have the option, i would DEFINATELY choose to have the vaginal delivery. It doesnt compare to a c-section at all. Vaginal deliveries are how babies are supposed to be brought in the world, and of course its going to hurt, but the minute you are holding your baby, you forget all the pain, but after a c-section, you can barely hold ur baby. It will be an experience so wonderful for you!
Reply:Honey my first child birth was vaginal and i only pushed 3 times the only problem i had was a little laceration i was out the hospital in 2 days (could have been 1 but i wanted the extra day of pampering)
Reply:always have vaginal if you can, it may hurt getting the baby out, it did for me twice but I got both my kids out in 1 1/2 hours each, and the recovery is a day or two.


just to save you a little pain is not worth getting stuck in a chair or couch for several weeks.


a couple hours of pain is worth being free to walk around your home and care for your baby and you.


when you are pushing just remember the baby will come out the harder and faster you push.
Reply:i gave birth through c-sec, so i dnt have any idea how's the feeling via the v way. your shaking during the recovery was due to the wearing off of the anesthesia and quite natural, ur nurse shld knw that. if you are into going through labour pains for hours till you are fully dillated and pushing till the baby comes out for we dont knw how long compared to just being operated wid anaesthesia, ill go to c-sec again..
Reply:Has your sister In law ever had a C-section? My first child was a Vaginal delivery and everything went well and the recovery was fine.





My second pregnancy was an emergency C-section and like you said the recovery was hell! You know what it feels like and I'm guessing you don't want to go through that again. If you don't then push that baby out your ****** and be on your way.
Reply:I gave birth vaginally med free. I was fine got to leave later that day I was up running around doing things. I lost the baby weight and then some. By my six wk visit. Just make sure you have a good breathing coach and the pushing will actually make you feel better than not. You and your baby will both be happy. My sister in laws sister in law also gave a drug free vaginal birth hers went just as quikly with a great recovery and a happy baby.
Reply:i have had 2 vaginal births and 2 c-sections and i have to say vaginal birth was much worse for me.
Reply:I've had one emergency c-sec, and was put to sleep too. I don't know what it would feel like to have a vaginal birth, but personally I went through so much pain after my c-sec that when I have my next child I will try my best to have a vaginal birth. I have had many women tell me that it is better to have a vaginal birth than a c-sec.


Help with C++ programming?

Write a program that asks for the end user's name and for the scores on three class exams, each based on 100 points. If the average of the three exams carries a weight of 2/3 towards the final grade and the final-exam score carries a weight of 1/3 towards the final grade, the program ought to


A) ask for the end user's name (both the first and the last name)


B) greet the end user with his/her name,


C) Calculate the minimum score necessary on the final exam so that the end user will pass with a "C", not a "C-" nor a "C+"


and


D) print out the necessary score for the end user in a complete statement referring to the user by name.





note tha a C grade is from 73.0 to 77.0


I am a beginner, it will be better if you put basic codes.


Thank you

Help with C++ programming?
ok i wont write this all out for you but ill give you some pointers


i assume you know how to start off writing the program with you main function and all


so you are going to need to create some variables


you need a string for the first and last name so it might look like this





string strFirstName, strLastName;





then you need something for the test scores since this is a small program and dealing with huge numbers just use a double for these and have a different one for each grade you will work with





double dblTest1, dblTest2, dblTest3, dblTestTotal, dblFinal;





there are ways to do it with a lot fewer variables but im keeping it really simple





then you will need to get the information from the user. for this use cin and cout statements for example





cout %26lt;%26lt; "please enter your first name: ";


cin %26gt;%26gt; strFirstName;





repeat that for all of the info you need to get from the user





once you have all the info from the user you can get down to the math part. here is where i would suggest that you spend a few min thinking up a good equation like





finaltestscore = ((73 * 3) - ((test1 + test2 + test3) / 3 * 2));





i would need to know more about how your teacher wants all the rounding and such done to make it work the way she wants but this will get you on the right track





then when your done you just need a cout to output all of the info you need





cout %26lt;%26lt; strFirstName %26lt;%26lt; " " %26lt;%26lt; strLastName %26lt;%26lt; " you will need a score of: " %26lt;%26lt; dblFinal %26lt;%26lt; " in order to get a C for the class"%26lt;%26lt;endl;





you might also want to figure out the lowest avg that the user can have and still get a C and change the last line with an if / else statement





if you have any questions need help or want someone to check your code email me at aceofspades911@yahoo.com
Reply:I could answer this--for $20.
Reply:Do your own homework or you will get a C yourself.





I just fired someone yesterday because he couldn't write a proper code. I think he wished he had done his homework himself.





I decided to add written tests during interview because of this.
Reply:have you tried doing your homework on your own first? lol you know, i'm telling you this for your own good...C++ is a very difficult language...if you don't do your own homework (and/or projects), you will fail the course. what you're asking is not that complicated, so maybe you should try it first...you haven't even tried


C=3d-27 and 4d + 10c=120?

whats d and c i cant figure it out and both equations must have the same number


so


3 x d - 27 = c


4 x d + 10= c


what does c and d equal?

C=3d-27 and 4d + 10c=120?
4d + 10c=120


4d + 10(3d-27)=120


4d + 30d - 270=120


4d + 30d = 390


34d = 390


d = 390/34





c=3d-27


c=3(390/34)-27


c=126/17
Reply:The easiest way I know to solve these is to look at the two equations you were given. You were told what c equals. Substitute that everywhere you have c, like this:





4d + 10c =120 becomes


4d +10(3d-27) = 120


then just do the math and solve for d. After you get d, solve the first equation for c. And you've got both answers.
Reply:Well, there are a few ways to do systems of equations. The first 2 answers showed it doing substitution, I've always preferred linear combination, so I'll show the work that way.





First i put both equations in general form, so you have





4d + 10c = 120


-3d + c = - 27





Well, by looking at those, there are a few ways to do it, but I would multiply the bottom equation by 10, so you have both equations with 10c, then subtract..... as follows





4d + 10c = 120


-30d + 10c = -270


________________


34 d = 390





d = 195/17





sub back in to either one... for simplicity use...


c = 3d - 27


c = 3(195/17) - 27


c = (585/17) - 27


c = (585/17) - (459/17)


c = 126/17





Granted, the way the first answer was done was probably the easiest way, since one of the problems is set up as c = which makes it ideal for substitution, though I prefer linear combination just because it ends up being easier in most situations, so its just the way I like to do it.

plum

C'mon solve these mathe's questions.........?

{1} I f !z+4!%26lt;or=3 then maximum value of !z+1! is::


:a) 4


:b) 10


:c) 6


:d) 0





{2} If a line makes an angle of 45* with positive direction of each of x-axis, then the angle that the line makes with positive direction of z-axis is::


a) 30*


b) 60*


c) 45*


d) 90*





{3} If there is a matrix "D" containing C11,C12,C13,C21,C23,C31,C32=1 %26amp; C22=1+x , C33=1+y i.e the given matrix is (3X3)


for [x,y not equal to 0] then "D" is::


a) divisible by niether "x" nor "y"


b) divisible by both "x" %26amp; "y"


c) divisible by "x" but not "y"


d) divisible by "y" but not "x"





{4} Let there be a matrix of (3X3) containing it's elements as C11, C33=5 %26amp; C21,C31,C32=0 %26amp; C12,C23=5b %26amp; C13,C22=b


If !AXA!=25, then !b!=?


a) 25


b) 1


c) 1/5


d) 5

C'mon solve these mathe's questions.........?
Hard to understand your spelling, but I'll try.





{1} If z!+4! %26lt; or = 3


if z = -3 you'll have: (-3x-2x-1)+4 = - 2 %26lt; 3





z! + 1!


a) z! = 3 wrong


b) z! = 9 wrong


c) z! = 5 wrong


when z = -1; z! + 1 = 0 right





{2}


Any line on the plan (x,y) will make a 90º angle with z axis.





{3} If there is a matrix "D" containing C11,C12,C13,C21,C23,C31,C32=1 %26amp; C22=1+x , C33=1+y i.e the given matrix is (3X3)


[x,y not equal to 0]


But it may be [x = y]


Te answer is:


b) may be divisible by both "x" %26amp; "y"





{4}


b = 1
Reply:http://www.coolmath.com


http://www.mathworld.wolfram.com


What is the c++ code runnable in dev c++ developmental tool, for this output????

what is the c++ code runnable in dev c++ developmental too, for this output????


it will accept a string and creates a figure,, like in the following:





(it will be like this if the number of amount of string is an even number)





enter string: ccss


c c


c


s


s s





(it will be like this if the number of amount of string is an odd number)








enter string: table


t t t


a a


b


l l


e e e








(note: it should be 3 strings to be accepted as input(string) in this program)

What is the c++ code runnable in dev c++ developmental tool, for this output????
what he heck is this? where did you find it


What is C shell programming ?

Is C chell is part of C programming or its Pure Unix programming ? and what software i need to do program at this C shell .


Do i need to install unix or i need C / C++ in my computer ?

What is C shell programming ?
Yes, the person who has given the answer just before me is completely right. U can do C-programming in under both operating systems - Windows %26amp; Linux.





If u're using Windows, then u've to install 'Turbo C++ IDE' (it's an external compiler) in ur system. It'll compile ur C / C++ programmings u've written.





But if u're using Linux, then u don't have to worry about loading these external compilers, coz Unix provides in-built gcc-compilers that helps to run %26amp; execute C / C++ programs. Here u've to use 'vi' command to open a C-file %26amp; write programs in that file.





I've both WindowsXP %26amp; Linux RedHat 9.0 in my system. So, I get the opportunity to work in both environments.





U're in a misconception - how can C-shell be a part of C-programming ? As soon as u log in, a program called the 'shell' starts to run at ur terminal %26amp; keeps on running until u terminate the session. U know, 'shell' acts as the command-interpreter. Unix offers a variety of shells - Bourne shell, Korn shell, C shell etc. C-shell has path : /bin/csh.
Reply:I wanted to mail u, but ur id is hidden here. Report It

Reply:you can mail me at sarwarbin@yahoo.com . I am a bengali too :) Report It

Reply:You could be asking about two completely different things.





1) The C language. C is a high level programming language that every professional needs to know. You need a C compiler and linker in order to program in C. You can download gcc for your OS (Unix, Windows, whatever) for free.





2) csh. csh is a shell, and as such has a scripting language. It is very similar to bsh (Bourne shell) and ksh (Korn shell). I order to get a command prompt in Unix, you open a shell. You can then type commands using the shell scripting language. You can write scripts and save them and run them too. The various shells are usually preinstalled on Unix systems.


If you are on Windows, I know ksh has been ported to Windows and you can buy it to use as your command prompt and scripting language. I think it sold by MKS systems. I'm not sure about csh. I've never used it on Windows.
Reply:http://en.wikipedia.org/wiki/Shell_%28co...


Possible M/C???

My sister is about 9-10 weeks pregnant and yesterday she kept getting light headed like she was going to pass out and was bleeding pretty heavily with clots coming out also. I told her that she was probably having a m/c but when she went to the ER they told her that her cervix is still closed so she didn’t m/c and they also told her that when you m/c there is a lot of pain which I find to be untrue because when I had a m/c in December I didn’t know I went for my monthly appt and the doctor said that the baby was not viable. What do you think could be wrong if she didn’t m/c where is the blood and clots coming from? Also they didnt do a ultrasound either she has to follow up with her doctor today.

Possible M/C???
She could have plancenta abervia- don't know how to spell it. My cousin has that and she was bleeding. It can be dangerous if unnocticed. Good luck to her! good she has a doctors appoinment today!
Reply:I'm not sure what that could be, but i can understand about the hospital. when i was a couple of moths along i started to vomit blood and the hospital didnt even check on the baby. I was so upset.
Reply:she needs to go to a different doctor. doctors always asked me everytime if i had any gushes of fluid or any bleeding. if the blood is bright red then it is most definetly somehting serious and as far as the blood clots that's not supposed to happen during pregnancy. she may not have miscarried but if she goes untreated off of one doctor's opinion then she might. best of luck :)
Reply:Yikes! Sounds like internal bleeding from somewhere!!! Thats scary... Hope everything goes OK. Sounds like the hospital didn't care about the situation. Thats too bad:( I can't believe they didnt care where the bleeding was coming from!?!?!?!!!!

parts of a flower

Possible M/C?

My sister is about 9-10 weeks pregnant and yesterday she kept getting light headed like she was going to pass out and was bleeding pretty heavily with clots coming out also. I told her that she was probably having a m/c but when she went to the ER they told her that her cervix is still closed so she didn’t m/c and they also told her that when you m/c there is a lot of pain which I find to be untrue because when I had a m/c in December I didn’t know I went for my monthly appt and the doctor said that the baby was not viable. What do you think could be wrong if she didn’t m/c where is the blood and clots coming from? Also they didnt do a ultrasound either she has to follow up with her doctor today.

Possible M/C?
I had a similar situation when I was 2 months pregnant. It was horrifying! I had a huge blood clot come out of my vagina with what seemed like a lot of blood, but the bleeding did not continue. I went to the emergency room (I was positive I had miscarried) and they did not want to do an ultrasound, but I made them call my doctor who told them to do the ultrasound. The baby was fine. He is 2 years old now, so it all worked out.





What was it? I later figured out that it was a vaginal clot from sex. Yep! That area was pretty sensitive after becoming pregnant and the blood was not from above the cervix, but from the vaginal area itself. It was a couple of days after sex and the clot (about the size of an egg) broke lose and came out. Scary, but completely harmless.





I hope your sister did not miscarry. I am sorry to hear you miscarried...that has to be very painful emotionally. Please let us know what the doctor tells your sister today. Thanks.
Reply:I'm really glad things turned out ok. Thanks for letting me know! Report It

Reply:I dont really understand because if the cervix was closed then where would the clots be coming from. I had a miscarriage and it was painful but my friend had one and she had no pain at all so they are wrong in what they say. i think if i were her id be going somewhere else if possible for a second opinion. Also they should have scanned her, i had two scans when i was miscarrying. Good luck hope your sister is ok.


For the following C-program, does it mean it prefers to be in the state of "not inspace" or putting out chars?

#include %26lt;stdio.h%26gt;





int main(void)


{


int c;


int inspace;





inspace = 1;


while ((c = getchar()) != EOF)


{


if (c == ' ' || c == '\t' || c == '\n')


{


if (inspace == 0)


{


inspace = 1;


putchar('\n');


}


/* else, don't print anything */


}


else


{


inspace = 0;


putchar(c);


}


}





return 0;


}

For the following C-program, does it mean it prefers to be in the state of "not inspace" or putting out chars?
There is no preference in the software - that concept doesn't apply.





What the program does is to replace white space (1 or more of space, tab or newline) and replace it with a single new line. In other words, the software will copy each word of the input on its own line in the output.


What is difference between c++ & embedded c++, do they require different version of C++ for prog. execution?

i know a bit of embedded %26amp; assembly language,but still dont know difference between c++ %26amp; embedded c++. i have a progg in c++ for serial communication but now i dont know whether i have to run it on normal (borland) c++ or it require some other version of c++.plz do tell me the source if it require some other version

What is difference between c++ %26amp; embedded c++, do they require different version of C++ for prog. execution?
They are basically the same as far as language goes. The biggest difference is going to be the compiler and operating system. If you have a serial communications module written for an embedded processor, it probable wont work on your desktop/laptop, or the other way around. Mostly because of the operating system used on each.


Possible M/C?

My sister is about 9-10 weeks pregnant and yesterday she kept getting light headed like she was going to pass out and was bleeding pretty heavily with clots coming out also. I told her that she was probably having a m/c but when she went to the ER they told her that her cervix is still closed so she didn’t m/c and they also told her that when you m/c there is a lot of pain which I find to be untrue because when I had a m/c in December I didn’t know I went for my monthly appt and the doctor said that the baby was not viable. What do you think could be wrong if she didn’t m/c where is the blood and clots coming from? Also they didnt do a ultrasound either she has to follow up with her doctor today.

Possible M/C?
I had a similar situation when I was 2 months pregnant. It was horrifying! I had a huge blood clot come out of my vagina with what seemed like a lot of blood, but the bleeding did not continue. I went to the emergency room (I was positive I had miscarried) and they did not want to do an ultrasound, but I made them call my doctor who told them to do the ultrasound. The baby was fine. He is 2 years old now, so it all worked out.





What was it? I later figured out that it was a vaginal clot from sex. Yep! That area was pretty sensitive after becoming pregnant and the blood was not from above the cervix, but from the vaginal area itself. It was a couple of days after sex and the clot (about the size of an egg) broke lose and came out. Scary, but completely harmless.





I hope your sister did not miscarry. I am sorry to hear you miscarried...that has to be very painful emotionally. Please let us know what the doctor tells your sister today. Thanks.
Reply:I'm really glad things turned out ok. Thanks for letting me know! Report It

Reply:I dont really understand because if the cervix was closed then where would the clots be coming from. I had a miscarriage and it was painful but my friend had one and she had no pain at all so they are wrong in what they say. i think if i were her id be going somewhere else if possible for a second opinion. Also they should have scanned her, i had two scans when i was miscarrying. Good luck hope your sister is ok.

mothers day flowers

C# is the regular C (language)?

I just bought a book whose title is "C# Primer Plus"


Is this book just the "C" language


Because my friend told me to learn "C"

C# is the regular C (language)?
No C# is a business class programming language on .net framework which is visual and you can produce windows programs using it. C# is a good language for developing programs in a network or web applications and desktop application. C# syntax is somewhat like C++ but it has omitted some of the stuff from c++ and it added some new features. Its goal was to make easy developing programs and make it fast. In c++ you see most features that u will use in upcoming programs but some of them has been difficult and made a ot of errors. C is something simpler than C++ without a lot of features and is for structured programming it has no definition for object oriented programming.
Reply:C# would be based on C++ but it is a Microsoft .NET Framework language.
Reply:No, not even close. C# is more like Java. It runs off the .NET Framework. C is OLD school stuff. C++ is even newer than C, and C++ is old. The hot language today is either C# or Java. Do some research on "C# .NET and the CLR".
Reply:C# is an advanced version of C++ which is a object orientated version of C.


You need to read the book and see if it assumes you know 'C' and 'C++'.


Hope the source helps.


C'mon solve these mathe's questions.........?

{1} I f !z+4!%26lt;or=3 then maximum value of !z+1! is::


:a) 4


:b) 10


:c) 6


:d) 0





{2} If a line makes an angle of 45* with positive direction of each of x-axis, then the angle that the line makes with positive direction of z-axis is::


a) 30*


b) 60*


c) 45*


d) 90*





{3} If there is a matrix "D" containing C11,C12,C13,C21,C23,C31,C32=1 %26amp; C22=1+x , C33=1+y i.e the given matrix is (3X3)


for [x,y not equal to 0] then "D" is::


a) divisible by niether "x" nor "y"


b) divisible by both "x" %26amp; "y"


c) divisible by "x" but not "y"


d) divisible by "y" but not "x"





{4} Let there be a matrix of (3X3) containing it's elements as C11, C33=5 %26amp; C21,C31,C32=0 %26amp; C12,C23=5b %26amp; C13,C22=b


If !AXA!=25, then !b!=?


a) 25


b) 1


c) 1/5


d) 5

C'mon solve these mathe's questions.........?
Hard to understand your spelling, but I'll try.





{1} If z!+4! %26lt; or = 3


if z = -3 you'll have: (-3x-2x-1)+4 = - 2 %26lt; 3





z! + 1!


a) z! = 3 wrong


b) z! = 9 wrong


c) z! = 5 wrong


when z = -1; z! + 1 = 0 right





{2}


Any line on the plan (x,y) will make a 90º angle with z axis.





{3} If there is a matrix "D" containing C11,C12,C13,C21,C23,C31,C32=1 %26amp; C22=1+x , C33=1+y i.e the given matrix is (3X3)


[x,y not equal to 0]


But it may be [x = y]


Te answer is:


b) may be divisible by both "x" %26amp; "y"





{4}


b = 1
Reply:http://www.coolmath.com


http://www.mathworld.wolfram.com


Can you get more gems for a Gemagic?

B/C I got one and I was wondering where I could get one b/c I am almost out of them!!

Can you get more gems for a Gemagic?
I've found them at salvation army, goodwill, and ebay. type in your search engine "gemagic" and you'll come up with lots of listings.


I had allergic to vit c.i dun tk it regually but once i tk,running nose comes,i try multivit ester-c b4,no use

i had allergic to vitamin since few years ago, i dun hv such problem when i was young.i found out i allergic to vit c when i running nose,though of taking vit c can help me improve my immunity so my running nose n itchyness can gone, but unfortunally,i become worst n worst b4 i tk vit c. Wait until my running nose complety recover,i give myself another chance to test whether am i realy allergic to vit c, i take 1 tablet and the next day, my running nose come back!!!! i duno y this will happen,i dun hv this kinda problem when i was young,i eat lot of tablet vit C when i was kid.i tried differents kinda of vit C, ester-C,multivitamin all gave me symptom like flu, so can u help me slove this problem, anything email me ok, thanks!!

I had allergic to vit c.i dun tk it regually but once i tk,running nose comes,i try multivit ester-c b4,no use
The vitamins on the market are synthetic and not the same ones you probably took as a child. Most of the vitamin supplements in regular drug stores, department stores, grocery stores etc. comes from China as they are the major exporter of cheap supplements. I don't doubt that their supplements would actually cause an allergic reaction since they contain a lot of additives in them that aren't on the labels. Try buying some vit c at a health food store. It may cost you more, but the other choice would be to drink juice from freshly squeezed fruits like oranges, berries, and grapefruits etc.

song downloads

C/D Car Changer Needs Re-Programming?

I have just recently purchased a BMW 850 csi which has a c/d changer that will not play my own c/d music--just new c/d's


Is there any way I can get this machine programmed to accept my discs


I have another 840 Bm which also has the same c/d changer and that one plays all my discs





Any help or advice will be much appreciated





I am in the London area in case there is someone I can contact or see





Thanks

C/D Car Changer Needs Re-Programming?
Make sure you're using CD-R discs, not CD-RW. You might try burning the CDs in another format.


At 25°C, the standard enthalpy for the conversion of graphite to diamond is +1.895 kJ and the change in the..

At 25°C, the standard enthalpy for the conversion of graphite to diamond is +1.895 kJ and the change in the standard entropy for this reaction is -3.363 J/K. Based on these data





A. graphite cannot be converted to diamond at 1 atm pressure.


B. diamond is more stable than graphite at all T's at one atmosphere.


C. diamond is more stable than graphite below 290°C and graphite is more stable than diamond above this T.


D. graphite is more stable than diamond below 290°C and diamond is more stable than graphite above 290°C.

At 25°C, the standard enthalpy for the conversion of graphite to diamond is +1.895 kJ and the change in the..
to happen spontaneously we want a dG = -





dG = dH - T(dS)





dG = +1.895 kJ - T( -3.363 J/K)


@ no temperature can dG = -


------------------





A. TRUE : graphite cannot be converted to diamond at 1 atm pressure.





B. FALSE: diamond is more stable than graphite at all T's at one atmosphere.





C. FALSE: diamond is more stable than graphite below 290°C and graphite is more stable than diamond above this T.





D. FALSE: graphite is more stable than diamond below 290°C and diamond is more stable than graphite above 290°C.


C/C++ anyone?

is C++ hard to learn? i wanna know cuz soon i plan on making games one day...if anyone learnt C/C++, plz tell me how hard it was....

C/C++ anyone?
Actually, C and C++ are pretty easy languages to learn.





The hard part is "Windows Programming" including the Windows API, MFC, and any other graphic API's (DirectX or other).





Most people who post on this site are really commenting on the Windows API and not the C/C++ language itself: "difficult, steep learning curve, etc." This is the trouble, if you're thinking of programming a Windows game, you're going to have to learn the Windows stuff--the hard part.





In your mind, always separate the language from the platform. It'll make understanding easier. And remember, the Mars rover does not have a Windows OS. Yet, most of it is programmed in C/C++. (I believe the underlying system is VxWorks).





Good luck.
Reply:C/C++ is a pretty difficult language. In my opinion, it's because it's so versatile. You can do so much with it and the syntax isn't as limiting for many functions like other languages (example: even though this many not mean much to you yet, C/C++ lets you do almost any kind of Overloading. This can pose troubleshooting problems if you don't know what you're doing). This makes it very powerful to use, but, you have to know exactly what you want the compiler to do.
Reply:It all depend on how good you are.
Reply:Depends on how well good your are with computers





I would say it's so-so, there are harder ones. I started learning in Augest during school. I can now make games like War, tic-tac-toe, ect.


Wasn't extreamly hard, but takes alot of logical thinking.
Reply:C++ is one of the harder programming languages to learn, however it isn't to bad to learn. It took me 3 years to learn it from my college. However, if you want to make games such as Halo 3 (which is written in C++) or other "state of the art" games that have intense graphics math plays a huge role in the programming. You'd be shocked to see how much higher level math as calculus and linear algebra goes into the making of such games. So a good word of advice to you would be to get really really really good at math and physics such as calc 3 by the time ur done with school. Just because you know C++ doesn't mean you can write games because it is probably the hardest form of programming. For now though start off simple and just learn the basic parts of C++, because it will take a few years before you can do sweet graphic work, but in the end it will all pay off!
Reply:its ez mode
Reply:it depends on how much programing experience you have. i leanred C last term and it was fairly easy but i have been in CS for 5 years


C# .net with InDesign?

1. How do you run DoScript from c#?


c# requires a third argument (object WithArguments) that won't accept anything I throw at it @#(*%@





app.DoScript(Object Script, Language, object WithArguments)








2. Is there ANY substantial InDesign c# documentation?





I am trying to automate the assembly of a .indd





I'm tired of seeing all the level 1 examples out there.


ie. Here's how to make a textframe (Goofy laugh)





c# barely translates from .js





Thanks!

C# .net with InDesign?
May be you can post your requirements at http://expert.ccietutorial.com/


and let many programmers bid for your project.


You can hire whoever you like.





Do not pay any money afront however.

easter cards

What is C(n)?

If the series is telescoping, what is C(n) "C sub n" where


A(n) = C(n) - C(n+1)





the series is sum of (9/5) * ( 1 / ((n+1)*(n+2)) ) n = 1 to infinity





The series is telescopic, but i'm not real sure what it is asking for C(n). Any explanation would be appreciated. Thanks

What is C(n)?
it's asking you to write it in explicit terms (without the sigma sign). These are sometimes difficult but let's see





you can factor out the 9/5


so n=1 to infinity of 1/(n+1)(n+2)


ok so here the best idea is to use partial fractions





so I see that (n+2)-(n+1) = 1 so I figure the fraction must be


(n+2)-(n+1) / (n+1)(n+2)


so 1/(n+1) - 1/(n+2)





A(n)


so C(n) is 1/(n+1)


What does C-C and C-H bond energies have to do with the reactivity of alkanes?

C-C and C-H bond energies are lower/higher than the rest of the single bonds... what does this have to do with the reactivity of alkanes?

What does C-C and C-H bond energies have to do with the reactivity of alkanes?
During a reaction bonds are broken and new bonds are formed. Now, if C-C and C-H bonds in alkanes are strong, they will be hard to break, therefore we say the alkanes are less reactive.
Reply:If these bond have higher energies (in english: are stronger) than other single bonds, then one will have to supply more energy to break the bond in order for a chemical reaction to occur. Hence one would say that an alkane is much less inclined to react than certain other single bonds, for example, the single bond between oxygen and hydrogen in an alcohol -O-H. This bond is comparatively weak, ie has less bond energy and hence the H comes off easily, hence it is more reactive.


C++ question?

Are most games and applications made with Microsoft Visual C++?


Or, If i took a class for C++ would they use Microsoft C++? And well, i asked that, are most games made with Microsoft C++?

C++ question?
Most games are made with Microsoft Visual C++, but you dont need to use that. You can download the free Dev C++ IDE to write C++ programs http://wxdsgn.sourceforge.net/
Reply:C++ is a programming language that was derived from the programming language C. Microsoft Visual C++ is an IDE(Integrated Development Environment ) that is used to create applications for C++. There are lots of IDE's eclipse, bloodshed, ect. Game companies use there own IDE to create games. For example Gears of War was developed using the Unreal 3 engine developed by epic games. Some development kits use C++ and others use other languages. There are lots of programming languages C#, J#, python, java, ect. If you want to learn to program or make games you need to hit a book store. You would also need to go to school for software or game development.


Help with C++ Compiler?

Hi, how can i compile a C++ program were my friends can use it without


having to download any additional software.





I have been using microsoft visual studio 2008 but the only way my friends are


able to execute that file is by downloading visual studio also.





- What is the best compiler to use for C++ and were can i find some help


getting it set up, because i used the code::blocks compiler early today and it


seems as though you have to have a diffrent compiler like microsoft 2008 or


the gnu compiler... All i want is some information like that.





- also how do you add an icon to your C++ file that you compiled.





My Friends and Family are either running windows XP or Vista so my main goal is to


get a compiler to were there operating system already contains the nessessary files


to run the compiled C++ program.





I am farly new to C++ if you can not tell.





Thanks in advance.

Help with C++ Compiler?
You do have everything. VS is all you need.





In VS go to the build options. In the options, set the build to "release" and not debug.





If you are writing a MFC program (don't think so; however, just in case), look under the project settings tab build configuration and set to "statically linked MFC library" instead of "dynamically linked." This second step will bind the MFC library to your exe (this one is different on different win machines).





Probably step 1 will solve your problem.





Now, just copy the ".exe" file from your \release\ folder and give it away. You're good to go.





Good luck.





EDIT: just saw the icon reference. In the project resource viewer, open the icon folder. There should be a program icon already in the folder--edit away. Or you can add a new one and do some whiz bang graphics with it!
Reply:You are really lost. Try worrying less for a start. Then know this...once you compile a C++ program, you can run the exe file on almost any computer that is MS compatible.





Try Visual Studio
Reply:You should be able to compile a program on VS express that runs on any Windows computer. You need to be sure you're building a .exe file. In VS 2008 it may require that .Net 3.0 or later is required on the target system (your family's and friend's) They can download this from Microsoft. Also you can build debug or release version in VS you should build release versions for other computers. If your program still require them to have VS to run then you need to look at your build settings and references. Make sure that you are building an exe file and that the references don't refer to something you aren't expecting in the target environment.

brenda song

C# Questions - Please Help ASAP!?

i am having some difficulty with these C# questions! i will give you the questions and 4 possible answers, please can you provide me with the correct answer and please explain how you got that answer.... thanks in advance





7. What is the term used to describe a method that can be used in the code without creating an object of the class containing it?





a. protected


b. public


c. final


d. static





8. What is this called: int weight;?





a. Method declaration


b. Primitive declaration


c. Class declaration


d. Object declaration





9.What does the public modifier in method tiger mean?


public tiger()


{


my_set(100,"tiger");


show();


}





a. it is available to the animal class


b. it is available to all objects of the class


c. it is available to the lion class


d. it is available to any class

C# Questions - Please Help ASAP!?
I only know numbers 7 and 8 (because I barely know C#).





7. d. static, I think (by definition, I think)


8. d. Object declaration (because you are declaring the object weight as an int)


Are you familiar with C?

Hi, I'm learning c programing and I'm also using vista unfortunately. I got this tip but I have no idea when I'm supposed to use that line....








Apparently MinGW in Windows Vista loses track of one key file when it installs. To ensure that the file is found when you compile modify the command path to include this folder:





C:\MINGW\LIB\GCC-LIB\MINGW32\3.2.3





This path assumes that MinGW is installed in the root folder on drive C, and that you're using version 3.2.3 of MinGW. If not, change the last part of the pathname accordingly. For example, for MinGW version 3.4.5 use:





C:\MINGW\LIBEXEC\GCC-LIB\MINGW32\3.4.5





By adding the proper, the missing file will be found. Here is the path I set when I do my command line programming in Vista:





PATH=C:\WINDOWS;C:\MINGW\BIN;C:\MINGW\...





That seems to work. I'm not happy with it. But it works.

Are you familiar with C?
This is the way it should work.


C's equivalent to C++'s getchar()?

I am learning C and I do not know how to make the program end when the user presses the Enter Key. How is this done? I know the basics of C++ and it's getchar(), I tried it in C hoping to get lucky...didn't work.

C's equivalent to C++'s getchar()?
bro use getch(); instead of getchar();
Reply:getchar() is actually a C function that C++ inherited. If it is not doing what you want, it's probably because you haven't processed the last '\n' in the standard input.





My recommendation is to do all your input processing line by line (using std::getline in C++, and fgets in C). That way there's never a question of whether you have processed the end of line or not.
Reply:First of all, it depends on your compiler, by default Visual Studio (from MS) and the GNU C Comiler GCC do that for you.





Borland made a header file called "conio.h" that uses a function called getch(); that does the very same thing that you intend on the question. But beware, that code won't be very portable.








By the way, if you need a equivalent to getch(); some people did a equivalent function on the web that you can download; and yes IT WILL BE PORTABLE.





Finally, if your'e in a hurry and can't waste more time looking for another function, you can try a simple cin %26gt;%26gt; "expression"; and finish the program. It's not nice, but it works.
Reply:Include this header file:


#include %26lt;conio.h%26gt;





//Don't know if it works in C as well. However, it does work


//in C++.





//Then use the following function to check the entered


//character.





char check;





check = getch();





//You said getchar();
Reply:use getch();





and if u havent said void main(); then return 0;





also remember 2 include %26lt;conio.h%26gt;


C, C++ Beginner Help ?

Hi People,





I wrote the below given code in "Turbo C" It's Working But When I paste the same code in Dev C++. It's not working.





I am just frustrated.





WHY IT IS NOT WORKING WITH DEV C++


-----------------------------


#include %26lt;conio.h%26gt;


main()


{


textcolor (BLUE) ;


cprintf ( "YourName" ) ;


}


--------------------------------





Long Answers Are Appreciated.





Thanks In Advance.

C, C++ Beginner Help ?
conio.h is not part of the C++ standard. Also, if you are interested in doing console output, C++ uses cout:





http://xoax.net/comp/cpp/console/Lesson2...
Reply:You don't need a long answer. conio.h is turbo c only. You can't convert this program to DEV C++ because conio.h is not a standard c library.

bouquet

Programming in Dev C++...Please Help?

I know C++ programming in Turbo C++.


But my same source codes from Turbo C++ are not working in Dev C++


Are the codes in Dev C++ different?





In turbo i wrote


#include%26lt;iostream.h%26gt;





but when i write the same thing in Dev C++ it jus doesn't accept it.

Programming in Dev C++...Please Help?
C++ libraries don't use .h anymore. Some compilers still support .h C++ includes, but most don't anymore.





Instead of





[code]


#include %26lt;iostream.h%26gt;


[/code]





You will have to use





[code]


#include %26lt;iostream%26gt;





using namespace std;


[/code]





If you don't know what a namespace is, you better google it, but to put it short, the C++ objects are into the std namespace, so you will have to either type that, or to type std:: before each object.





For example: std::cout %26lt;%26lt; "hello world";





(However as I said, "std::" is not necessary if you type "using namespace std;" in the start, becuase you tell the compiler the default namespace is std).








Other C++ includes are:


%26lt;vector%26gt; %26lt;string%26gt; %26lt;ctime%26gt; %26lt;cmath%26gt; (...)





As you can see, the names are the same, but without a .h and into the namespace std.
Reply:To see the output you could pause the program.


Try adding a "system("pause");" statement before the return.





Note that the function system() is basically Windows only. Report It

Reply:you can run your application through the DOS console:


go to start%26gt;run%26gt;cmd you will go to dos mode


then write the applicaiton name (ie. .exe), the result will be the following lines so no need to pause the system. Report It

Reply:Also instead of system("PAUSE"), you could put cin.get();





It makes you press enter to exit, and works good in Hello world, but if you want to create something that has input, I recommend using system("PAUSE"), its just that you never know if cin.get(); will work with input... Report It

Reply:It might accept





# include%26lt;iostream%26gt;
Reply:i have same problem can u help to find turbo C++ pls my ID is grubb128 now i'm online pls help me%26gt;%26gt;%26gt;


C language help regarding Mouse pointer?

i am not using any server or .. it plain winxp and plain turbo c editor have made a game using graphics and ofcourse keyboard i want to have mouse interface too ?help?








C language help regarding Mouse pointer?


well.. how to make the mouse pointer appear on a project in c??


i have the coding writen in a book which makes the mouse pointer appear in the program also reads if the mouse bottom is clicked or not but i just can seem to understand the terms used in making the program i searched the net but cannot find a specific article related to implement or initializemouse in c with clear deiscription ?? any particular sites would be helpful or a detail explanation thanku?

C language help regarding Mouse pointer?
Bestever resource is


http://www.programmersheavan.com








Cheers:)
Reply:C language? So let me get this, you created a game using the graphics api? Why not use opengl/direct3d or whatever. Is your game fullscreen?


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

Write a function with a char* argument s and int argument length whichreserves the string so that the first letter becomes the last and so on.


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 3.please help!?
I'll tell U something that could help in the reverse task





U can use one of two things





1-


by includeing %26lt;string%26gt; %26amp; %26lt; algorithm%26gt;





void revers(char* a,int length)


{


string s = a;


reverse(s.begin() , s.end());


a = s;


}





2-


by using a loop





void reverse(char *a,int length)


{


int i=0;


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


a[length-i-1] = a[i];


}


M.A.C Studio Fix ? Is it a big problem for causing skin problem?

I have used M.A.C Studio Fix (foundation with powder). I also have acne problem on my face too. Since high school was over for me and summer time begins I havent used my M.A.C Studio Fix every since and getting major breakout problems on my face. But.. what I have notice is that everytime I put M.A.C Studio Fix on my breakout vanished just like that. Its weriod.. I heard that M.A.C Studio fix is not good for your skin and can cause more breakouts. Is this true? If so should I switch to the M.A.C Foundation? or something?

M.A.C Studio Fix ? Is it a big problem for causing skin problem?
MAC studio Fix is 1 of my best foundations ever. it gives me this celebrity glow on my face


dont listen to people, use it if it works for u


we all have different skin types and reactions


what works for 1 person might not work for the other. it will b unfair to brand it bad just because a few people didnt choose the right product range.
Reply:My feeling is that no the MAC does not break you out. You however gave me a bit to think about though. I have mild acne, but only on my cheeks and I have been using MAC studio fix (powder only) for a while now. I absolutely LOVE the way it matches my skin and covers blemishes. I just find it hard to believe that such a popular makeup line as MAC would be harsh on even sensitive skin! Maybe try for a while using one without the other. Also try using a big soft brush for applying your powder, instead of the pad that comes with it.


best wishes

yu gi oh cards