Monday, May 24, 2010

D/C problems?

I had a d/c back in 05 b/c the babies heart stopped beating.My husband is wondering if that messed something up b/c we have not been pregnant ever since and been trying since that happened.My question is has anyone had any problems after having a d/c.(for exp: the cervix not closing back)

D/C problems?
Anytime you have an abdonimal surgical procedure or the doctor messes around with your insides there is a possibility (albeit very small) of causing scarring or adhesions that can cause later problems with conceiving.





Regardless, if you've been trying for 3 years without success, it's time to talk to the doctor. There is probably something wrong -- which may or may not be related to your earlier miscarriage/D%26amp;C. A good fertility doctor should be able to do the necessary testing to determine what the problem is, and the best way to attempt to solve it.





Good luck.

mothers day flowers

My Microsoft Visual C++ 2005 is not working right?

My Microsoft Visual C++ 2005 Studio is not working well because on a Win32 Console Application, when I type the code





#include %26lt;iostream%26gt;





main()


{


std::cout %26lt;%26lt; "some text" %26lt;%26lt; std::endl;


}





it gives me the following error:





------ Build started: Project: HelloWorld, Configuration: Debug Win32 ------


Compiling...


HelloWorld.cpp


c:\programming\cppprojects\helloworld\... : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int


Build log was saved at "file://c:\Programming\cppprojects\Hello...


HelloWorld - 1 error(s), 0 warning(s)


========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========





I'm trying to learn some C++ but this is making it impossible. Please help me as soon as possible, THANK YOU VERY MUCH!

My Microsoft Visual C++ 2005 is not working right?
#include %26lt;iostream%26gt;





int main ()


{


cout %26lt;%26lt; "Hello World!";


return 0;


}
Reply:You don't have a specified return type. You can use





void main()





but this is nonstandard. Returning an int is actually the standard, like this:





http://xoax.net/comp/cpp/console/Lesson1...





Microsoft does (or used to) support a void return type. The standard does not. So, a void return type is not portable.


My Microsoft Visual C++ 2005 is not working right?

My Microsoft Visual C++ 2005 Studio is not working well because on a Win32 Console Application, when I type the code





#include %26lt;iostream%26gt;





main()


{


std::cout %26lt;%26lt; "some text" %26lt;%26lt; std::endl;


}





it gives me the following error:





------ Build started: Project: HelloWorld, Configuration: Debug Win32 ------


Compiling...


HelloWorld.cpp


c:\programming\cppprojects\helloworld\... : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int


Build log was saved at "file://c:\Programming\cppprojects\Hello...


HelloWorld - 1 error(s), 0 warning(s)


========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========





I'm trying to learn some C++ but this is making it impossible. Please help me as soon as possible, THANK YOU VERY MUCH!

My Microsoft Visual C++ 2005 is not working right?
#include %26lt;iostream%26gt;





int main ()


{


cout %26lt;%26lt; "Hello World!";


return 0;


}
Reply:You don't have a specified return type. You can use





void main()





but this is nonstandard. Returning an int is actually the standard, like this:





http://xoax.net/comp/cpp/console/Lesson1...





Microsoft does (or used to) support a void return type. The standard does not. So, a void return type is not portable.


So i made my C++ code in notepad but it doesnt open for more than.1 seconds?

i put the getch(); thing and included lybaries but i only opens for a little





heres the code:





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


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





main()








{


int grade1, grade2, grade3, grade4, grade5, grade6, total, average;





printf("enter grade1: "); /* whitch grade to put in */


scanf("%d", %26amp;grade1);


if (grade1 %26gt;= 90)


printf("A\n\n", grade1);


else


if(grade1 %26gt;= 80)


printf("B\n\n");


else


if (grade1 %26gt;=70)


printf("C\n\n");


else


if (grade1 %26gt;=60)


printf("D\n\n");


else


printf("F\n\n");





printf("enter grade2: ");


scanf("%d", %26amp;grade2);


if (grade2 %26gt;= 90)


printf("A\n\n", grade2);


else


if(grade2 %26gt;= 80)


printf("B\n\n");


else


if (grade2 %26gt;=70)


printf("C\n\n");


else


if (grade2 %26gt;=60)


printf("D\n\n");


else


printf("F\n\n");


printf("enter grade3: ");


scanf("%d", %26amp;grade3);


if (grade1 %26gt;= 90)


printf("A\n\n", grade3);


else


if(grade3 %26gt;= 80)


printf("B\n\n");


else


if (grade3 %26gt;=70)


printf("C\n\n");


else


if (grade3 %26gt;=60)


printf("D\n\n");


else


printf("F\n\n");


printf("enter grade4: ");


scanf("%d", %26amp;grade4);


if (grade4 %26gt;= 90)


printf("A\n\n", grade1);


else


if(grade4 %26gt;= 80)


printf("B\n\n");


else


if (grade4 %26gt;=70)


printf("C\n\n");


else


if (grade4 %26gt;=60)


printf("D\n\n");


else


printf("F\n\n");


printf("enter grade5: ");


scanf("%d", %26amp;grade5);


if (grade5 %26gt;= 90)


printf("A\n\n", grade1);


else


if(grade5 %26gt;= 80)


printf("B\n\n");


else


if (grade5 %26gt;=70)


printf("C\n\n");


else


if (grade5 %26gt;=60)


printf("D\n\n");


else


printf("F\n\n");


printf("enter grade6: ");


scanf("%d", %26amp;grade6);


if (grade6 %26gt;= 90)


printf("A\n\n", grade1);


else


if(grade6 %26gt;= 80)


printf("B\n\n");


else


if (grade6 %26gt;=70)


printf("C\n\n");


else


if (grade6 %26gt;=60)


printf("D\n\n");


else


printf("F\n\n");





total = (grade1 + grade2 + grade3 + grade4 + grade5 + grade6);


/* adds up grades^ */


average = total / 6;





printf("Class average is %d\n", average);











getch();


return 0;


}

So i made my C++ code in notepad but it doesnt open for more than.1 seconds?
either run it from the windows command line (start button -%26gt; run -%26gt; type 'cmd' and hit enter -%26gt; navigate to your program)





or at the end of you program make a temporary variable up... force it to get user input into that temp variable.. this is to do nothing more than to put a check before the program exits.. again temp variable does nothing but give the cin statement something to dump a value to..


For C(diamond) -> C(graphite), the standard gibbs free energy change has a value of -2.90 kJ/mol.?

For C(diamond) -%26gt; C(graphite), the standard gibbs free energy change has a value of -2.90 kJ/mol. Which of the following best accounts for the observation that the reaction does NOT occur (i.e diamond is stable ) at 298K and 1 atm?


(A) Delta S for the reaction is positive.


(b) The activation energy for the reaction is very large.


(c) The reaction is slightly exothermic


(d) Diamond has a density greater than that of graphite


(e) Diamond has a heat capacity lower than that of graphite.

For C(diamond) -%26gt; C(graphite), the standard gibbs free energy change has a value of -2.90 kJ/mol.?
B: The activation energy for the reaction is very large.





In order to change diamond into graphite you need to heat it until the bonds between the carbon atoms break. (Very high temperature = very high activation energy)

song downloads

A/C evaporator coil is dirty causing drip. U need a permit to buy coil cleaner. Over the counter substitute?

My central a/c coil was dripping condensation instead of rolling in to the drainage pan. I'm sure it's b/c the coil is dirty b/c I've watched A/C repairment spray the solution on it, rinse, and fixed the problem. Can I do this myself and what type of solution/mixture can I use. Thanks in advance.

A/C evaporator coil is dirty causing drip. U need a permit to buy coil cleaner. Over the counter substitute?
you can clean your evaporator with water and a wire brush carefully, then disinfect with a disinfectant, then use pleated filters and you will not have to do it again!
Reply:the proper way to clean a coil is to pull it out %26amp; clean it most times they are to thick for those no rinse coil cleaners besides the cleaner you have it the more money youll save on electricity
Reply:you can buy coil cleaner at the hardware store, you don't need a permit. you just spray it on and let it set according to the directions, then rinse with water and it will flow down the cond. drain. i use a little pump sprayer or garden sprayer.


A- C- G- U- A- is what once it replicates.?

Show what is equal to what.


Example:


T-A-T-A


A-T-A-T


C-G-C-G


G-C-G-C


A-T-A-T





Do it just like this.

A- C- G- U- A- is what once it replicates.?
ACGUA would not replicate as having U it's RNA.





but it would have come from a DNA template that looked like TGCAT.
Reply:BP is right!