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!


Is C# just for web apps?

What's C# and what are the differences with Visual C#? Is C# just for web apps or can be used like visualbasic or C?

Is C# just for web apps?
The short answer is no. C# is not just for web apps, it is just another programming language, like Visual Basic or C. It can be used to build a variety of application types, both server and client based.





Strictly speaking there's no such thing as Visual C#. There IS such as thing as Visual Basic though, but no Visual C#. No such animal.





Visual Basic was so named because it was a language which had an IDE (Integrated Development Environment) which heavily used a WYSIWYG interface (What You See Is What You Get) -%26gt; hence "Visual" Basic.





There is Visual Studio.NET (VS.NET), which is the most common IDE for all the .NET framework languages. This includes C#, VB.NET, J# etc.





VS.NET provides a user interface to allow a developer to develop applications more rapidly by taking out a lot of the "leg work" of programming, such as compiling your application, or showing you what a final window may look like, very similar to the original concepts of Visual Basic.
Reply:No, We can also develop windows applications, Windows Services, Console applications and Mobile Applications in C#.
Reply:C# is a language which, like Java, is compiled into bytecode which is then converted to machine-code at run-time. (The syntax itself is also structurally similar to Java.) The C# language was developed by Microsoft, while Visual C# refers to the implementation of their language and their development environment i.e. the IDE/editor etc. (The previous person's statement that there's no such thing as Visual C# is incorrect). There have been attempts to port C# to other platforms and operating systems, but they're independent open-source projects and not official Microsoft implementations of the language or libraries. C# has a number of strengths, one of which is ease-of-use for internet communication which is why it's often used for web apps (it's mainly used server-side though, because Internet Explorer is the only browser that properly supports C# scripting). It's also reasonably good with regards to run-time security, which is why it's again used for web apps and also for Microsoft-sanctioned homebrew development on the XBox 360 (i.e. XNA).
Reply:No it isn't.





C# is a language. Visual C# is a program for writing C# with.





No it isn't. Yes it it can.
Reply:no C# is not onlyy for web applications,it can be a better replacement of powerfull languages like C,C++,VB


this will be used for windows aplications,mobile programing,automation,socket programing to make an interaction among devices....





visual c# is there which is same as C#.NET
Reply:No, we can make cars and planes and computers and internet and paper and trees and pen and harddisks and tube lights and Air conditioner and Monitorzs and Pathan's and Americans and Russians and Indians and evrything.





zama pakhta pelly


zama raphan custard


zama raphan jelly


zama pathanoon ki raley





La La La..





All of the above was a joke..





We can work in C# just like vb 6.0, C++ or native C. Its even lot better then those.





Enjoy


Three urns, called A, B, and C, are placed on a table. A certain number of marbles are placed in each urn.?

Let V0 = [n1]


[n2]


[n3]


be the 3X1 matrix that indicates the number of marbles in each urn. That is, there are n1 marbles in urn A, n2 marbles in urn B, and n3 marbles in urn C. An operation of shifting marbles from urn to urn is performed. In each stage of this operation, three things are done:


(i) 3/5 of the marbles in A are left in A, 1/5 of the marbles in A are moved to B, and 1/5 of the marbles in A are moved to C.


(ii) At the same time, ¼ of the marbles in B are moved to A, ½ of the marbles in B are left in B, and ¼ of the marbles in B are moved to C.


(iii) Simultaneously, 1/5 of the marbles in C are moved to A, 1/5 of the marbles in C are moved to B, and 3/5 of the marbles in C are left in C.





(c) Suppose that n1 = 20, n2 = 80, and n3 = 40. Calculate V5, the number of marbles in each urn after five stages of the operation have been performed.

Three urns, called A, B, and C, are placed on a table. A certain number of marbles are placed in each urn.?
v0 = [20 , 80 , 40]





v1 = [12+20+8 ,4+40+8 ,4+20+24]


= [40 , 52 , 48] ... the problem here is that the third urn has marbles which cannot be divided by 5.





v2 =[24+13+9 , 8+26+9 , 8+13+30]


= [46 , 43 , 51]


... i guess by this time... simply approximate the number of marbles to be allocated...








§
Reply:is this the math book from Congress -


used for balancing the budget ?

easter cards

Should I dress C.C. Sabathia tomorrow against the Tigers?

Tigers seems to be on a streak now and their players are hitting exceptional well of lately. C.C. was 3 and 1 with 5.29 era against them last season and based on how C.C. played of lately. Should I dress him?

Should I dress C.C. Sabathia tomorrow against the Tigers?
definately.
Reply:Nah, he is old enough to dress himself.


I'm sure he would appreciate the offer, though.





Of course you pitch CC Sabathia.


It's still early and he is solid.
Reply:He IS scheduled to start tomorrow. Why wouldn't you?





http://sports.yahoo.com/mlb/players/6603


The formula used is: C - 6.1= 0.7(d - 15), C=celsius D= depth. what is the predicted temp at a depth of -20m.?

answer choices:


A: -2.6 degrees C


B: -18.4 degrees C


C: -19.6 degrees C


D: 18.1 degrees C

The formula used is: C - 6.1= 0.7(d - 15), C=celsius D= depth. what is the predicted temp at a depth of -20m.?
C = 0.7 (D-15) + 6.1 = 0.7 (-20-15) + 6.1


= -18.4 C


Is a second c-section easier than the first?

I found out that I’m going to have a second c-section. My first baby was too big for me to delivery. I was in labor all day and then later that night I had a c-section. My doctor said this c-section would be easier b/c I wouldn’t bleed as much and I wouldn’t be exhausted from being labor all day. Is the second c-section easier than the first?

Is a second c-section easier than the first?
I sure hope so! I'm in the same boat. I can't have a VBAC because the hospital that I have to go to doesn't offer them anymore because of Insurance Liability issues. ( a bunch of malarky I say)! I've been told by my OBGYN that most women tend to recover faster from a second c-section and the reason isn't really known. Some say it's because you have another child or children to take care of so it becomes a mind over matter situation. Others say it's because your body "remembers" how to heal from that surgery. I don't know about either, I'm just going with the flow right now.
Reply:I had a friend who had to have a 2nd c-section. Her first wasn't planned, but she never would advance in labor, even with medications, so they finally did a c-section. She explained that it wasn't easier, but at least the 2nd time she had time to prepare, as well as a better understand of what would be going on. Basically, being prepared allowed her %26amp; her family to go through it easier. But healing %26amp; everything took the same amount of time.
Reply:I have had 3 c-sections and each time I had one the recovery was easier and easier. When I had my last one when the nurses came and checked on my about 5 hours after delivery they were shocked when I asked if I could get out of bed and clean myself up.


But you never know everyone is diffrent.


Best of luck!
Reply:i think so, as your Dr told you you will not be in labor all day.......


good luck
Reply:I would think that it would totally be up to the circumstances. My first c-section was an emergency c-section and it was rough. But then I got preg again and as with you had to deliver by c-section again. My Dr. told me that was because of the way the first one was done. It was the classic c-section. After this type all subsequent births must be done by c-section. But, the second one for me was totally better. It was a scheduled birth and it went pretty smooth. Since this is something that you are aware of ahead of time be sure and take advantage of it and just prepare yourself for another bundle of pure joy : ) After wards I was not in alot of pain as with the first one. The scar is in the same place and everything smoothed back out when it healed all up. Congratulations.
Reply:my sister had c-section with both of hers, she said it was alot easier because you already know what to expect....
Reply:I've had 3 and each one got easier. The first - I was in labor for a VERY long time (you wouldn't believe me if I told you) and so I was completely exhausted and healed very slowly. The second one - they tried to induce labor and gave up after 16 hours of nothing. I healed a LOT quicker since I had no labor and was well rested. The third one was planned since you can't try VBAC after 2 c-sections. I was well rested and prepared and healed even faster than number 2. Take the opportunity to get as much rest as you can before hand and I'm sure it will be much easier with a quicker healing time. After all, you know what to expect now - that by itself makes it easier.
Reply:My mom had two c-sections, with me then my brother. She did think the second one was easier, as technology had advanced but that was because my brother and I are 6 years apart. Also she had already experienced it so shewas more prepared for all of it. Though the recovery times were the same, they were easier to cope with.
Reply:Probably will be easier this time because you will have be scheduled and you can be more prepared. Also, you won't have any labor pains. But as you know its a little more painful after.
Reply:well i've had 3 going for my 4th and each time i had one the pain was worse and worse and felt almost unbearable, but everyone is different so you could one of the lucky ones with no pain.


Good Luck and Congrats on the new Edition!!!


A+X, B+C??? relationship pb!?

A, a bisexual femal that is in love with another impossible to get older woman named X..


B is a cute guy that is trying to ask A out. A is meeting B to get to know him more.


so C is As old classmate and is in love with B. A hates C.


Eventhought A loves that other X, she just wants to go out with B to get used to the idea of males bfs as she is forced and convinced she have someday to marry a male.At the time, C is hating A, A doesnt give a crap cos C hurt her before.


B loves A so much...


So, should A not go out with B and let C have a chance eventhought she hates her???And should she also forget about X and focus more on other things till she is more conviced about male dating and meets the right guy even after a long time(ps; A is 18 :p)!


Plz be mature and tell me what u think as, as u see a lot of ppl r involved and A is very confused :p

A+X, B+C??? relationship pb!?
1. Your question is like confusing mathematics,but guess....m good at maths.


2. Don't expect any maturity from me, m only as old as you are ;)


as for your question.....





a.Forget X,she's just a crush,u urself answered your question about X......"impossible to get older woman".





b.U r bi,much more lucky than me,at least u can get into a socially acceptable loving relationship with a guy without having to compromise.





If B loves u and u r bi,give the guy a chance. You can always say no if u don't like him and anywayz at 18 one never gets into any serious relationship(whether hetero or homo),there are many more things to care about.





c. As long as you hate C, Why are you thinking about C at all......





so A,don't be confused,this is just a passing phase of life...


Nothing very serious and nothing very important.Relationships just form 1% of wat life is all about at 18....
Reply:My apologies, I was never good at Algebra and got lost in the question.
Reply:Since X is impossible to attain, C hates A but B loves A. A should date B and tell C to see her way out of it.





So your equation should go like this





(x) - c - b+a= ♥²
Reply:is this an episode of 90210 or One Tree. once you are mature enough to use names and not letters your life will be easier to figure out..
Reply:The song Love Stinks comes to mind.





Sounds like A is jealous of C, and jealousy implies something more than just wanting to fulfill your societal obligation to marry a man. Get B's opinion, preferably through a third party. Sadly you can't have both, and there's nobody who can make the final decision but you.
Reply:You just reminded me why I stayed away from Math all the time. I HATE you for that.
Reply:If A wants to go out with B then A needs to let X go. A also needs to find out if there is anything between B and C. A needs to be careful because she may end up hurting all three letters.

brenda song

August 17, 1988, C-130 Hercules plane crashed and killing of zia-ul-haq by isa and kgb?

following facts are unanswerable: why?


a) C-130 Hercules crashed, is it a stable,reliable airoplane?


b) where did the black box go in C-130 Hercules wrech?


c) American Ambassador to Pakistan Arnold Raphael, was he a sucide terrorist in this act?


d) did isa support to kgb?


e) did kgb supoort to isa?


f) C-130 Hercules airoplane's condition was normal or out of date?


g) C-130 Hercules was properly inspected before its take off?


h) how come plane blew up in the air like an explosion?

August 17, 1988, C-130 Hercules plane crashed and killing of zia-ul-haq by isa and kgb?
thumbs down
Reply:This suspicion is in the peoples mind because of that, the question cannot be in current events.


VR


I want to empty c drive and reinstall xp?

i am unable to open any folder, mycomputer, mydocuments .But MSOFFICE applications are accessible.Also i am using a corrupted windows xp .I want to empty the c drive and then want to reinstall the xp again.


I want to know that how to empty the c drive and is there some"bootable CD" required to install new xp on c drive in this situation?


Please tell me how to empty the c drive completely?


Also ho to install a new xp on c drive?


Is is possible that i keep all my important data on d drive and then format(empty) the c drive and then use a bootable cd to install a new xp OS.


please suggest.

I want to empty c drive and reinstall xp?
It sounds like you have two hard drives and you have most of your data on the 2nd drive. That's good if this is the case. That way, re-installing Windows will not wipe out your data.





The bootable CD you mentioned will be the XP CD you should have in your hand. Drop that in the CD drive, make sure your BIOS is set to boot from the CD, and boot your computer. You'll probably be prompted to press a key to boot from the CD; press any key so that the Windows installation will start.





Part of the installation process is to pick if you want to reformat your hard drive. This will pretty much wipe your hard drive clean for the re-installation. Pick this option during the installation and proceed.





Good luck!
Reply:At first be sure u have a bootable XP disk. Boot ur PC using the disk ( when ur screen appear " press any key to boot from cd") of course u have to configure ur first boot from cd from ur motherboard BIOS to do it. after bootng, files would be loaded. Then u asks some option on the bottom of ur screen.....follow them. some times u will ask to repair, dont do it. then when u see ur hard drive partitions on screen, select C drive, press D from keyboard, then ENTER and then press L. Ur C drve is deleted. U wll see an unpartitioned drive. selecting the drive, press ENTER. Then it will format FAT or NTFS, u must select on of them, I will prefer to select NTFS, it is more secure. Then press ENTER and wait...it will be formating, then copying and then installing the OS. Dont be afraid, its so easy.
Reply:You need a Windows XP operating system to do this, this is your "bootable cd". You can buy one from pcclub.com, for $110.





But from there, you are given a few options, one of them is to reformat your hard drive, (which will wipe out everything). And yes, you can transfer what you like to your D drive, or burn it to a cd temporarily. Just be careful none of what your keeping is infected with a virus or anything.





To install XP on a hard drive, its a step by step thing, it gives you directions on there of exactly what to do. If you need any help, lemme know.
Reply:1. You cannot use a corrupted or borrowed CD. You must have a new, valid CD with the product key. You cannot use anyone else's CD because when the program is first activated, Microsoft takes the product key, mixes it with information about the computer, and comes up with what MS calls the "installation ID." This installation ID will not match any other computer.





You can buy at:


http://www.amazon.com/s/ref=nb_ss_sw/102...





Before you format the drive, which will erase everything, see if you can copy any files you want to some sort of external storage - an external HD or flashdrive. Then, Open My Computer, right-click on C:, and select Format.





In a very short time you will have an empty hard drive and will have to install an OS, then everything else you ever had.


Ever heard of C.M.C. Recruitment company?

I received the following e-mail today and I figure it is probably a scam but thought I would put it out here to find out. Also this can aid in others with the same question. Thanks for the input.








%26lt;Dear Public,


C.M.C Recruiment company is at it again this year with various doors of opportunity opened to those that are in dear need of a Job.





C.M.C. has been supplying Financial, Commercial, Legal. Industrial, Technical, I.T., Construction and Engineering staff to companies and local authorities nationally, locally and overseas since 1972. With a strong reputation for successfully matching suitable personnel to the correct position, CMC has secured a professional and confident approach to recruitment.





With offices in London, Dorchester, Poole and Bexhill-on-Sea, CMC can match the requirements of both the candidate and the needs of the employer. As a member of REC (The Recruitment %26amp; Employment Confederation), CMC works to the strict guidelines and standards required of the confederation.





We offer a 24 hour service to our client companies and our recruitment consultants are ready to assist with any staffing situation that may arise.We are ready to lift you out of The Bag of poverty and Debt by giving the Most suitable Job to cover for your needs.





If you are an interested applicant, simply forward your Full and Comprehensive Resume/ CV to our Application Consultant and we will carefully examine you for what you need.You are free to choose between Part Time Openings and Full Time Openings and you will be given a one way Permit to Live and Work in the United Kingdom through the Help of Our organisation.





For more information concerning our services, visit our website on


www.cmcrecruitment.co.uk. Once again Please submit your Resume to our Application consultant on this email address cmcrecruitment@consultant.com We will get back to you as soon as possible.


We look forward to hearing from you ASAP.


Tina Oceans,


The Consultant Manager.

Ever heard of C.M.C. Recruitment company?
Yes, they are company located in the UK.


How can i have Strong C/C++ and PC programming skills?

Im trying to Become a game programer. but the requirements says i need have Strong C/C++ and PC programming skills.


What is Strong C/C++ and PC programming skills? and how can i have Strong C/C++ and PC programming skills???????

How can i have Strong C/C++ and PC programming skills?
C/C++ are computer programming languages. I am sure that what is meant by having strong skills in them is that you can program programs with each of these codes that are complex and have many functions to them. Probably some of the other things that it is asking for is programming skills dealing with Java, Basic, etc. Programing games isn't just sitting down with a fancy program that does all the animation and actions etc. for you, it involves lots of coding which if you do not know the basics you will never be able to master.
Reply:I help people get their games published and generally I would disagree with that. C++ is a great thing to know if you want to get a JOB programming games. Working in a cubicle and only working on one small part of the game. But to write games you can use anything you want.





Anyway.....


One way to improve C programming skills and get a great background in games is to work on a MUD. Those are raw source text based games, usually in C. It would also help to stick linux on some old computer you have in the closet then host the MUD online

bouquet

A/C problem?

1998 Chevolet Lumina 3.1 engine. A/Cwas working fine and stopped out of a clear blue. I've checked all the fuses and relay they or good, but have no power at the plug to the compressor clutch. The switch for the A/C also controls the heater and defroster, they work fine. Could the A/C part of the switch be bad? I had the dash pannel of to repair the clips, and it just covers the Insturment panel and switches. there are no wires that can be hit. But Later after replacing panel the A/C stopped working, Is this a ***** or what happed.? Help it's getting very hot and 260 A/C is a bummer.

A/C problem?
If there is no power going to the A/C clutch, than there is a electrical problem, it is either a break in the wires somewhere or the A/C switch is bad on the dashboard.
Reply:i have a 96 Chevy Lumina, and had the same problem... it hasn't worked for me in 2 years, and I've changed everything imaginable.. the problem is with the vehicle itself is what I've determined.. i don't know why they made more of these vehicles after 96.. they are a piece of crap
Reply:You will only get power to the ac clutch after the ac and fan switch is turned on and there is enough gas in the system to activate the low pressure switch, this switch completes the circuit with an earth.





Good Luck


5wks post m/c and positive test today?

I had a m/c 5 wks ago at 7wks pg.I m/c naturally and had no d%26amp;c,my dr did a u/s and said my uterus was empty.I bled medium for 1 wk then light for 1wk,on wk 3 i had my period but ever since i still spot at least once every 2 days but usually just a very small amount.I have taken a pregnancy test today at 5wks post m/c and i got a light positive,could this mean im pg again or is it just pregnancy hormone from my m/c?I have been having slight cramping off and on as well.Im not sure what to make of it.I have been haveing intercourse with my partner.

5wks post m/c and positive test today?
It's likely that this is pregnancy hormone still in your body from your previous miscarriage. Your doctor or midwife should probably monitor your hCG levels until they return to normal, and then if you want to try again, let you know when it's safe to do so.


A question about C++ and Java?

I am a c++ beginner, I have finished the beginning tutorial, but I find C++ is so hard to use, and I want to turn to Java.I know the programs written with java can run in all platforms, but as I know C++ is difficult to do so.


I heard that programs written with C++ run faster than those with Java.


now I have no idea how to make a choice between C++ and Java, could you offer me some suggestion.

A question about C++ and Java?
C++ is not platform independent but the STL is platform indepedent. The reason why C++ is hard is they allow strict language since C++ interacts directly with memory while java is handled by the JVM.





Since C++ is memory driven, it's quicker to execute while java can only wait for response from the JVM.





C++ is not difficult, it's merely too advance as you can use pointers to access memory objects rather than accessing objects directly (like java does). Basically Java and C++ are both OO so the only thing you should ask is: Do I want my program to be memory driven executed or JVM executed?





Hope this helps.
Reply:It depends on what you want to achieve.





These days, almost all of the applications are being developed in either C# or Java.





so if you have choice switch to Java, there are center 3rd party programs that generate native machine code for Java programs so that they run as fast as any program written in any language.





Don't sweat it! and switch to Java as it is being used more now then C++.
Reply:Despite some of the other answers' claims, C++ is still the most widely used programming language (check Wikipedia). C++ is a multi-paradigm language supporting:


procedural programming,


object-oriented programming, and


generic programming (templatization)





I agree with some of the other answers that it depends on what you are trying to accomplish and what platform you will be working with and also how portable you really need your software to be.





If faced with the choice of the two, my recommendation would come down to:


1. If you're developing on the Windows platform for client applications or a server application with high performance and scalability requirements, go with C++.


2. For any other need and where the JRE (Java Run-time) will be available, choose Java.





From an academic standpoint, Java is a 'more pure' OO language and also easier to learn. On the other hand, if you learn C++, transitioning to Java would be a breeze.





Note that a lot of the complexity of C++ (that also makes it powerful) can be avoided when you're first learning the language.
Reply:it depends on what os you are using and how complicated your progs are..... i'd say java is easier to use, but c and c++ are more powerful languages....


again, this really depends on what you want for an end result, but learning both would be the best thing to do and determine which you like better.... both languages are kind of difficult (object oriented is a pain in the *** in the beginning)....


to answer your question, though, i prefer java for oo because that's what i learned oo on, but for simple things i will still use c (not c++)...


Need help in C languauge?

C SKILL SET











1.How do you write a program which produces its own source code as its output?


2.How can I find the day of the week given the date?


3.Why doesn't C have nested functions?


4.What is the most efficient way to count the number of bits which are set in a value?


5.How can I convert integers to binary or hexadecimal?


6.How can I call a function, given its name as a string?


7.How do I access command-line arguments?


8.How can I return multiple values from a function?


9.How can I invoke another program from within a C program?


10.How can I access memory located at a certain address?


11.How can I allocate arrays or structures bigger than 64K?


12.How can I find out how much memory is available?


13.How can I read a directory in a C program?


14.How can I increase the allowable number of simultaneously open files?


15.What's wrong with the call "fopen("c:\newdir\file.dat", "r")"?

Need help in C languauge?
Wow, that's a lot of questions.


1) If you want to cheat, you just read the .c file and display it. To convert an .exe file to source code, you'll need to learn Assembly language. You will have to disassemble the .exe file and then translate the disassembled code to .c source.


2) You can figure out how to do that programmatically if you look at a calendar.


3) You can call other functions within functions, but doing anything else is inefficient.


4) Hint: Learn how binary numbers work and make use of the boolean algebra operators.


5) Learn how to convert binary and hexadecimal numbers into decimal, and then you can figure out the code to do the conversion programmatically. You can also view the documentation on the standard C libraries - some functions can do this for you.


6) Why would you want to do that? That's just stupid. It's possible to do that programmatically, but all that additional code is ridiculous.


7) Look in your compiler's documentation regarding main().


8) Create a structure and make your function so that it accepts a pointer to your structure as an argument. Your function then just fills in the structure members.


9) That depends on the operating system. Read the documentation on the functions that reside in your compiler's libraries. Your compiler might have the spawn() function. If you're working in DOS, then you might have an Exec function if your compiler comes with a DOS library.


10) Initialize a pointer with your specific memory address. Then you just access the memory that the pointer variable points to as you normally do.





Near Pointer:


unsigned char *video=2334; /* offset 2334 */





Far Pointer:


unsigned char far *video=(char *) 0xa0000000; /* segment A000, offset 0 */





11) Some 16 bit compilers support the 'huge' data type. However, the machine code that is produced to access 'huge' data is inefficient. It is better to just split your arrays if they exceed 64k.


12) See answer 9.


13) See answer 9.


14) See answer 9.


15) You're missing the ';' character at the end of the line, and you didn't allocate a variable of the 'FILE' structure type and specify it in the fopen() line. Stream functions require the 'FILE' structure. Also, you didn't put an extra '\' character after the '\' slashes in your string.


Example:


FILE *in;


in = fopen( "c:\\myfile.txt", "r");
Reply:Any Problem Ask An Expert And Get Professional Help


at


http://directcegree.info


http://www.geocities.com/programinghelps
Reply:2)using while statement


3)who said c have nested function ex if else


4)using arrays


5)using string arrays


6)call simply by mentioning the name


7)/*--------------*/


8)using recursion function.


9)i think thats not available in c


10)using pointers


11)use dyanamic arrays


12)dont know

yu gi oh cards

I am good in my C/C++ language,Is there any certification exams for C/C++?

What is meant by proficiency in C/C++?


Give me the online links for it....


For JAVA there is Sun microsystems certification,like that for C/C++???

I am good in my C/C++ language,Is there any certification exams for C/C++?
check on borland web they do offer c and c++ certifications
Reply:you can check brainbench certifications.


Simple C++ question?

i am trying an example from a book and i cant quite get it yet. hope you can help me.





Question: DECLARE A CHARACTER ARRAY, AND INITIALIZE IT TO A SUITABLE STRING. USE A LOOP TO CHANGE EVERY OTHER CHARACTER TO UPPERCASE. (HINT: ASCII UPPERCASE COUNTER PARTS ARE 32 LESS THEN THERE LOWERCASE )





so i have to use this arithmetic way no. no built in function in a library.





this is what i have so and cant figure out.





#include %26lt;iostream%26gt;





using namespace std;





int main()


{


char c[] = "hello world!";





int count = 0;





for( int i = 1; i %26lt; count; i = i + 2)


{


count++;


c[i] = i - 32;


cout %26lt;%26lt; c[i];


}


//cout %26lt;%26lt; c;








return 0;


}





i thought i have everything right except the cout %26lt;%26lt; part however you do it.





any help or suggestions..thanks

Simple C++ question?
first of all,you have wrongly declared the counter variable count.


The loop will exit after one pass. Also, it should be c[i]-=32; or


c[i]=c[i]-32;





try this code instead of the for loop


i=0;


while(c[i]!='\0')


{


c[i]-=32;


i++;


}
Reply:The answers above is somehow incorrect, but some users have suggested good stuff.





I am gonna present you with a solution similar to yours, but I have seen some indexing problems with yours, you have to realize an array starts at POSITION 0 not 1, and in the for loop, you just place i++ to increment to the next position from the character array.





But you have to realize that there are incorrect strings and incorrect symbols, a proper way is to do the following:





http://rafb.net/p/GoMp5X43.html


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


char c[] = "hello $^^#67world!";





int count = sizeof(c) - 1;





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


{


// Now only convert when it is a small character


if(c[i] %26gt;= 'a' %26amp;%26amp; c[i] %26lt;= 'z' ) c[i]-=32


}





cout %26lt;%26lt; c;


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





That will print out the correct line, and all the symbols will stay intact, so "Hello World!" = "HELLO WORLD!"





Now notice the condition i placed? It should be between a to z.





Now that should work correctly since I tested it here.





Good Luck :)
Reply:What do you mean by "can't figure it out"... you need to say what your problem actually is. The code you have posted seems to be a strange mix of C# and C++... this is not going to work, you need to use one language.





"using" is a C# thing. And you aren't using it correctly anyway. The C# "using" statement when used as a precompiler directive, will import a library in the same way that #include did for C++ and C languages.





These are the things you need to think about for this:


1. what to do if a letter is already uppercase


2. how to determine the end of the string (is it null-terminated, or length-prefixed)


3. How to deal with numbers, whitespace, and control characters.





You have an error in your loop. Look at what you did very carefully. First, you set a variable called 'count' to be zero. Then, you declare a loop and a new integer called 'i', and you initialize 'i' to be 1. Then you say that the loop condition is supposed be "i less than count", which is false the first time in, so the loop never runs.
Reply:One little thing to beware of is that you will also be subtracting


32 from the space when i = 5. This will convert that space into a null, which will prematurely terminate the string.


Help!!! U = {a, b, c, d, e, f, g, h}. A = {a, b, c, d, e}. B = {c, d, e, f}.?

U = {a, b, c, d, e, f, g, h}. A = {a, b, c, d, e}. B = {c, d, e, f}.


Which of the following is (A intersect B)C

Help!!! U = {a, b, c, d, e, f, g, h}. A = {a, b, c, d, e}. B = {c, d, e, f}.?
Simply the number of elements that are in both A and B


A ^ B = {c,d,e}
Reply:A intersect B = {c, d, e}





{c, d, e}C = {Cc, Cd, Ce}





Best of luck!
Reply:Hi you have not given the relation between (A n B) and C ? I will give you the answer when you add that information :)
Reply:dear brother,


Once again confirm whether your question is correct or not. Then put your question again in internet.





(It shows that your question was wrong)





OK
Reply:You don't give the choices ("the following"), but A intersect B means the set of all elements that are in both A and B. That would be: {c,d,e}





that's it! :)


Can anyone give the value for x,c,d (x,c,d are all integer and >1) for which 3.x(x+c).c+c^3 =d^3?

Can any one give an example where 3.x.c(x+c)+c^3 will be a cube of an integer%26gt;1. The value of x and c are %26gt;0 and and x,c are integer

Can anyone give the value for x,c,d (x,c,d are all integer and %26gt;1) for which 3.x(x+c).c+c^3 =d^3?
3xc(x+c) + c^3 =d^3


3cx^2 + 3c^2x + c^3 = d^3


x^3 + 3cx^2 + 3(c^2)x + c^3 = d^3 + x^3


(x + c )^3 = d^3 + x^3


This equation has no positive integer solution by Fermat's last


theorem.


No one can give an example!
Reply:I think you should do your own maths homework
Reply:Cubic Diophantine equations aren't real fun to play with analytically.





I'd suggest setting up a quick computer program with nested loops in x and c and just 'brute force' the problem for x and c values up to a thousand or so and see what you get.








Doug
Reply:Its a trial %26amp; error method. Is there a solution? I don't think. If so, please publish.

thank you cards

What c++ and c file extension?

example for c++ --%26gt; test.cpp





are "printf" and "scanf" commands in C++ or C

What c++ and c file extension?
c++ file name extention is .cpp


c file name extention is .c





printf and scanf commands belong to language C
Reply:The file extension in C is .c like test.c and


in C++, the extension of file is .cpp, like test.cpp.





The printf and scanf are the standard output and input commands in C. But these can be valid in C++.


The same commands are cout and cin objects respectively in C++.
Reply:The are in C++ ..





Thats a guess...





ok.


.


bye...
Reply:for c : myfile.c


forc++ : myfile.cpp


for using "printf" and "scanf" commands in C : #include %26lt;stdio.h%26gt; befor main
Reply:I'm sorry iyiogrenci but printf and scanf are also in C++ language!they are predefined with %26lt;stdio.h%26gt;;


scanf allow you to insert data from file like "file%26gt;%26gt;x" for %26lt;fstream.h%26gt; and printf allow you to print data into file like "file%26lt;%26lt;x"


for %26lt;fstream.h%26gt;


My C:// drive is full. What do I do??? I have tried everything!?

Alright well my C:// drive has been full for quite a while now, and everyday I get a pop up that my C:// is full. I have noticed a lack of speed on my computer, and many internet (not responding) errors. I have deleted many files, virius scanned, deleted temporary files, EVERYTHING! Its just too full. What do i do? I do have a D Drive that has plenty of space in it but it only says that C:// is low. Some programs that I install on D have to be installed on C:// to such as Photoshop CS3. It takes up space on both drives if installed on D://. Please help as soon as possible!

My C:// drive is full. What do I do??? I have tried everything!?
Make sure that your Recycle Bin is cleared. Open up explorer and right click the recycle bin and select "Empty."





You can also use disk cleanup by right clicking the C drive.
Reply:defrag your hard drive
Reply:Sounds like it's time to upgrade to an external hard drive. They are plug-and-play much like an oversized flash drive.





You can burn as much as 8.5 gigs of info to a DVD+RL disc but economy version is to upgrade to lose some info.
Reply:why don't u merge d drive with c! but i think you might need to wipe c i don't know but you should look it up if you merge d and c they both become one drive and then there would be more space!
Reply:programs take up less space if installed on D:


ok


open My Computer


enter this in the address bar


C:\Documents and Settings\


Click your user account folder


enter My Documents


basically EVERYTHING in there can be copied to D:\ safely


so drag it into the D drive (open a new mycomputer window and hit D:\_then Ctrl+A in my Documents and drag into the D:\ window)


and uninstall programs that you don't need unless they're ABSOLUTELY necessary.





Then download and install ccleaner and open/run it a couple times. On some runs it removed over 8GB of extra files/temp files on my computer (though I only shut down once a month or so).


And afterwards, right click C:\ then hit properties-%26gt;tools -%26gt; defragment and run the defragmenter on C:\ a couple times


and btw, hard drives are cheap now days, you can get another one for very little. Saw a 500GB SATA/IDE drive for $75USD the other day.





And NEVER EVER do those things to expand your C drive into D space. Even a slight error will permanently damage BOTH your C and D partitions. Also remember they don't work if C is a different drive then D. Merging/expanding C wont work unless you use partitions...
Reply:Get Partition Magic (unless you have Vista) and change the size of the partitons (assuming they are the same drive).Vista has this feature built in.





If you have two drives, make sure your personal files are being saved on drive D. Make sure to defragment the drive.
Reply:Try changing the size of the drives by going to Run, type in diskmgmt.msc and hit OK. This will bring up your disk configuration, and if "D" has space on it, you may be able to stretch out "C" and decrease the size of "D".
Reply:Try deleting some stuff that takes CDs.


Got it?


Ok.


What are these in chronological order? B.C., A.D., C.E.?

im doing this history timeline and do not understand this. also if you happen to know the dates of any of these events it would be very helpful...





Storming of Jerusalem/ Siege of Masada





Reign of Octavian (Augustus)





also please tell me if any of these dates are incorrent


Roman Republic is established


509 B.C.








Punic Wars


264 B.C.–146 B.C.





First Triumvirate rules Rome (Caesar, Crassus, and Pompey)


60 B.C.





Death of Julius Caesar


44 B.C.





Second triumvirate (Antony, Lepidus, and Octavian) rules Rome


43 B.C.E.





Pax Romana


27 B.C. – A.D. 180








Invasions by German tribes and Huns


410 C.E.


Constantine converts to Christianity


312 A.D.





Capital of the emperor is moved from Rome to Byzantium (Constantinople)


330 A.D.











Fall of the Roman Empire


190 A.D.





thank you sooooo much!!

What are these in chronological order? B.C., A.D., C.E.?
BC - Before Christ





AD - Anno Domini - In the Year of Our Lord





CE - Current Era - the NEW politically correct way to date things instead of AD or BC (BCE = Before Current Era)





Just arrange your dates by BC, AD or CE. Treat AD and CE as the same .
Reply:Roman Republic established 509 BC


Punic Wars 264-146BC


First triumvirate ....60BC


Death of Julius Caesar 44BC


Second Triumvirate 43BC


Reign of Octavian(Augustus)31BC-14AD


Pax Romana 27BC-180AD


Storming of Jerusalenm and Siege of Masada 70-73AD


Constantine the Great converts to Christianity 313 AD


Capital moved from Rome to Byzantium 330 AD


Invasions by huns and Goths c 410 AD


Fall of Roman Empire 476 AD
Reply:B.C., I believe stands for Before Christ. The dates should be arranged decending up to 0 BC. BC has been replaced by scientists that don't believe in Christ by BCE, Before Common Era





AD is Anno Domini 'in the year of our lord'. Dates count upward from 0 BC to present.





CE is the non-religious way of saying AD, it stands for Common Era.





Basically, the scientific and historical network stopped believing in Christ at some point but didn't want to change the entire dating system, so they relabeled AD as CE. Just to be clear, AD and CE are the same thing.





BC comes first.


2003 Ford Taurus A/C problems Please help?

A/C worked fine untill two days ago,just suddenly stopped working.Checked freon,its ok.Have power going in and out of low pressure switch.Removed relay and jumppered it and compresser came on and have good pressures.Replaced relay,still no A/C.Replaced A/C switch in dash,still no A/C.Jumppered low pressure switch,still no A/C.Replaced high pressure switch,no A/C.It does not have climate control,it has manual controls.Checked fuse,ok.Fans don't come on either,only radiator fan works when temp goes up.Any help would be appreciated.

2003 Ford Taurus A/C problems Please help?
Good job of testing there. If you did everything as you say the problem is 1. the computer is not getting the a/c request signal from the a/c switch or 2 the computer is not sending the ground to the a/c relay. Also there are 2 fuses that supply power to the a/c relay. Fuse #28 supplies the power to the relay coil and the computer grounds it. Fuse #22 supplies power to the relay common contact. Both of those fuses are located in the battery junction box which is in the middle behind the radiator. Either one of these fuses would keep the compressor from engaging%26gt;
Reply:Sounds like you are not getting the ground input to the coils on the relays.Could be a computer problem,not sure on that vehicle.
Reply:sounds like you've done a good job checking it out . The relay controls the rad. fan in addition to ac comp. Problem may lie with the relay you replaced, on fords if the part no: is not exactly the same the internal schematic is different, if you purchased at a part store rather than at ford it is likely the wrong one. I've had this problem more than once working on different vehicles. Good luck

potential breakup song

Funny how some animations of C&C Generals lacks while the latest C&C 3 Tiberium Wars doesn't?

playing the C%26amp;C Generals game in itself is fine. but the loading parts and cut scenes are running slow. The latest version of C%26amp;C 3 Tiberium Wars works fine though. thought the later the game, the more it expect more for the machine?

Funny how some animations of C%26amp;C Generals lacks while the latest C%26amp;C 3 Tiberium Wars doesn't?
I'm sorry to say C%26amp;C Generals was just a bad game.





I liked where they were going with it but it had sooo many problems and they never tried to fix it. (EA for ya)





Generals was just a fill in game, Tiberium Wars was the big one they put all their effort into.


Turbo C++ experts!?!?!?

here is my source code and i need to have these:


1.pascal triagnle of a certain degree n (x+y)^n


2.specific line of pascal triangle of a certain n (x+y)^n


3.Rth term coefficient of pascal triangle (ax+by)^n


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





int main()


{


int row,c,n,x;


void pasc(int);





printf("\n\nEnter the no. of rows: ");


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





printf("\n\n\n");


printf("\nPascal's triangle :\n\n\n");





for(n=0;n%26lt;row;n++)


{


for(c=row-n;c%26gt;=0;c--)


printf(" ");


pasc(n);


printf("\n\n");


}


}





void pasc(int n)


{


int r;


long fact(int);





for(r=0;r%26lt;=n;r++)


printf("%3ld ",fact(n)/(fact(n-r)*fact(r)))...


}





long fact(int v)


{


if(v==1||v==0)


return(1);


else


return(v*fact(v-1));


}








thanks a lot!!


love lots!!!

Turbo C++ experts!?!?!?
Richard this link will help you





http://www.cpp4u.com/c++/source_code/res...


Turbo c is not opening up..?

on opening tc.exe from c:\tc\bin\tc.exe i am getting an error msg window as follows:-





!6 bit MS-DOS Subsystem


"c:\tc\bin\tc.exe


c:\progra~1\symantec\s32e... An installable Virtual Device Driver failed Dll initialization.


Choose 'Close' to terminate the application."





what do i do to run my turbo c?

Turbo c is not opening up..?
down load %26amp; install tc++ 1.01 freely available at below link
Reply:How old is your turbo c (version number)


Check out compatibility of different versions with different versions of Windows.
Reply:you're missing a file therefore you are left with nothing but trash. you can try to reinstall the program


'98 intrepid A/C problem, the compresor doesnt cylce?

the mechanic said low freon so they check for leak and charged and apply anti leak leak in the system, it work for a week. then doesnt blow cold air again, so bring it back to the mechanic and check if there's a leak, no leak found, system charged the A/C is great for another week, now when outside temp. is low A/C is cold, outside temp. is high my A/C cannot handle. i observed when i turn ON my A/C it doesnt cycle, it run conteneously. my friend had the same car and we observed how it work after turning ON the A/C 10-15sec. the fans will goes on doesnt matter the engine is cold, mine is not. it run the fans when my temp. gauge in the dashboard goes to almost middle... need helps





thanks, bt5560

'98 intrepid A/C problem, the compresor doesnt cylce?
you do have a leak somewhere in the system sometimes it is difficult to find them,take it somewhere that will do a dye test to find the leak. they inject a ultraviolent dye int the system and use a special light to find small leaks, good luck

love song

2000 Jeep Cherokee A/C trouble?

On my 2000 Cherokee Sport, with the straight 6 (V6) 4.0 liter, automatic, my a/c is acting weird.





The a/c is fully charged. When I start the car, the a/c works fine. Then, as I drive and the car warms up, the a/c will suddenly stop working and it starts blowing warm air. I shut the a/c off, wait about 10 or 15 mins, and it is blowing cold again. Then, after a little bit, it blows warm air again, and this repeats.





Why does the a/c seem to "shut itself off" after a little bit, and then start working again?





Thanks,


Sweating in Kentucky!!

2000 Jeep Cherokee A/C trouble?
you have 1 of 2 problems.


most common is slightly under charged. to check attach gauge to low side, start engine and turn AC on max. run engine at 1200 to 1500 RPM. watch low PSI if it drops below 40psi add a little more freon r134a. if the psi increases above 45 you have a blockage or over charge. you will need a gauge on the high pressure side to determine which the cause is.
Reply:Sounds like the compressor clutch is disengaging, causing the warm air.
Reply:These systems are prone to clogging with things. The orifice tube is general we have that issue all the time. The only other thing that can cause that is a "low charge" since you say its charged I would suspect a clogg. We had 5 of those engines in the shops this week alone with the same issue. The 98-2002 seam to clogg more the others and we can't figure out why. The newer ones so far don't.
Reply:check for water coming out the drip tube, if there's no water check to make sure it's not plugged......... it sounds like the system is freezing up my need attention from an ac guy
Reply:you may need a new air commpressor
Reply:FIRST HAVE SOMEONE CHECK AND MAKE SURE THAT YOU HAVE POWER AND GROUND TO THE CLUTCH COIL WHEN THIS HAPPENS.





IF YOU DO NOT THEN CHECK THE PRESSURE SWITCH FOR POWER AND GROUND.





IF YOU HAVE BOTH POWER AND GROUND AT THE CLUTCH AND SWITCH AND THE CLUTCH IS DISENGAGED, IT COULD BE THAT THE CLUTCH COIL IS EITHER SHORTED INTERNAL OR THAT THE FRONT HUB ASSEMBLY HAS TOO MUCH GAP.





THE GAP CAN BE ADJUSTED BY REMOVING THE HUB AND REMOVING SOME OF THE SHIMS THAT ARE ON THE SHAFT.





IF THE GAP IS OKAY LIKE BETWEEN 30 TO 35 THOUSAND'S BUT THE COIL IS SHORTED, THEN YOU CAN EITHER REPLACE THE COMPLETE CLUTCH ASSEMBLY OR JUST THE COIL.


What is the C/C++ equivalent to a fortran common block?

I have to convert some old Fortran code to C/C++ but there is a variable that is part of a common statement. What is the C/C++ equivalent of that?

What is the C/C++ equivalent to a fortran common block?
If I understand this correctly, common variables are variables that are global in scope in FORTRAN. In that case, there's two different types of "globality" in C++





You can declare the variable outside of any function in C++ which will make it global in scope. If you add the keyword "static" in front of it, then its scope will be limited to that particular module, but viewable by all functions in the module.


How much vitamin c do guinea pigs need?

how much vitamin c do guinea pigs need per day? i've read many different responses on many sites.


also, what foods are high in vitamin c but not high in sugar? about how much of different types of foods should i feed?


also, if i can't feed that amount of vitamin c, what is a good vitamin c tablet or some other way of getting vitamin c to my piggy?


thanks!

How much vitamin c do guinea pigs need?
10 to 30 mg/kg daily. Do this through a daily vegetable routine--AVOID dissolvable vitamin C. Vitamin C decomposes quickly, and will discourage your pig from drinking its water. It's not worth it and I can't believe how many people are still using the stuff.





Guinealynx.info has excellent dietary charts. The vitamin C chart is here:


http://www.guinealynx.info/diet_order-c....





Romaine lettuce is an extremely healthy choice that most piggies will go absolutely crazy for. It contains 24mg of vitamin C per 100 grams. Personally, I feed 1 cup of romaine pieces with one 'treat' food (pepper slices, cilantro, one baby carrot, banana slice, etc) per day and it works just fine. Carrots are low in vitamin C and high in sugar and should be given only as a treat.





Bell peppers (red or green) and parsley are very high in vitamin C and many pigs enjoy the taste. Have a look through the diet charts and make up a good plan for your piggie. It's not hard at all to get your pig its daily vitamin C through veggies and pellets.
Reply:they need 10-30 mg. a day. i don't really know how much that is but you can google or ask someone. also, i use vitamin drops for my hamster than you can mix with the food or water, and i think it works well for him. you can get the kind for guinea pigs at petco. ♥ best of luck!





P.S.- carrots are high in vitamin C but not sugar =]
Reply:25mg is the recommended dosage, although more is better, you can not overdose on vitamin c as any unwanted vitamin c is excreted through the urine.





Different vegetables have different levels of vitamin c, I would avoid fruits as they are the very high in sugar. This site http://www.guinealynx.info/diet_order-c.... lists fresh produce ordered from most vitamin c to least. I recommend that you go through the list on the link provided above and choose the vegetables that you are able to get and then go and match them up at this site http://www.guineapigcages.com/forum/diet... this site has fresh produce and tells you how often you should feed each vegetable/fruit.





If you can not feed vitamin c enriched vegetables then chewable tablets or syrup made for kids works best, I have found that the girls will not take the tablets but will take the syrup so it is a bit of trial and error there. Do not use the drops you put in their water bottle, it disintegrates which in turn changes the flavor of the water and you can not properly tell how much vitamin c they are getting.
Reply:The average guinea pig needs between 10 and 30 mg/kg daily for good health. =)
Reply:50mg some veggies that are high in vit c are red pepper and dandelion greens. those are the 2 highest on the list that my vet gave me without also being high in calcum. i use a supplement that was recommended by my vet. its GNT-50C from oxbow. you can get it off the internet heres the link http://www.oxbowhay.com/Shop/showProduct...


my guinea pig loves them. i put one in his bowl this morning and it was gone within 5 minints. good luck. it sounds like you really care about your guinea pig.
Reply:10 to 30 mg/kg daily.


=-B


horselover99


Temporary Life + Death in C-->J vs Eternal Life in J-->C(the end of the law: sin and death)?

Many seem to go (bwd) with life in CJ, via another law in Rom 8:2 law vs law; Witch is clearly "fallen" in Galatians 5:4, from grace (above) to law (below). Furthermore twice fallen is as baby-lon, by the 2nd law of law vs law dividead against itself.





All who will live godly in CJ shall "suffer": 2Timothy 3:12;


Not to mention law is the ministration of death: 2Cor3:7.





Twice fallen, to the 2nd law of Mt 22: 36-40 law law,


requires twice risen with C of J--%26gt;C, to grace(above).


C isn't seated L in Moses' Seat, nor standing R with J.


C is seated above, where it's all right and no left at all.


C is above L/R sides wars have side effects, like death.


Every way you look at Rom 8:2 L-aw vs L-aw it's L-oser.


Every way you look at Rom 1 %26amp; 16 G-race, it's W-inner.


E-Life and peace with God are "through Jesus--%26gt;Christ".

Temporary Life + Death in C--%26gt;J vs Eternal Life in J--%26gt;C(the end of the law: sin and death)?
The wages of sin is death. On the other hand, the salary of virtue is also death and at least the sinful get to sleep in on Sundays.





If you think you're going to another world after this one, more power to you. Just don't try to force me into your beliefs.
Reply:It's not believe(s) I'm into, but rather know-ing.


Beliefs are for the Law vs Law know nots.


Know makes you free of believe lies(laws). Report It

Reply:Not you again!

garden flowers

For each point, B, C, and D, is the potential at that point larger, smaller, or the same as at point A?

A uniform electric field is directed due east. Point B is 2.00 m west of point A, point C is 2.00m east of point A, and point D is 2.00m south of A.


Part A


For each point, B, C, and D, is the potential at that point larger, smaller, or the same as at point A?


1) The potential in a point B is larger than the potential in point A.


2) The potential in a point B is equal to the potential in point A.


3) The potential in a point B is smaller than the potential in point A.





Part B


1) The potential in a point C is larger than the potential in point A.


2) The potential in a point C is equal to the potential in point A.


3) The potential in a point C is smaller than the potential in point A.





Part C


1) The potential in a point D is larger than the potential in point A.


2) The potential in a point D is equal to the potential in point A.


3) The potential in a point D is smaller than the potential in point A.

For each point, B, C, and D, is the potential at that point larger, smaller, or the same as at point A?
The electrical field goes from large (more positive) potential to a smaller (more negative) potential. Point B is directly "upstream" from point A, so would have a more positive potential. Point C is directly downstream from point A, so would be more negative. The potential at point D is directly across from point A, with neither an upstream nor a downstream component, so it is at the same potential as point A.
Reply:_________________________





E = - dV /dr means potential falls in the direction of field E





As E is towards east, potential falls as one moves east





Point B is 2.00 m west of point A, hence potential is more at point B





Point C is 2.00m east of point A, hence potential at C is less than potential at A





Point D is 2.00m south of A.As point D is on a line perpendicular to electric field E, point D and point A are on equipotential line or surface





Part A


For point, B potential is larger than that on point A,





potential at point C, potential is smaller than that on point A,





and D, is the potential is the same as at A





Part A CHOICE 1 is correct , 1) The potential in a point B is larger than the potential in point A.





_______________________________





Part B CHOICE 3 is correct , 1) The potential in a point C is smaller than the potential in point A.


_____________________________________





Part C CHOICE 2 is correct


2) The potential in a point D is equal to the potential in point A


__________________________________


(i) brands A, B, & C,(ii) brands A or B but not C, (iii) brands B & C but not A, (iv). single brand only?

AAA Plc produces 3 brands A,B %26amp;C of powder milk. In order to determine the marketability of this product some samples were sent out. The result of this exercise, shows that 120 customers liked brand A; 100 customers liked brand B, 110 customers liked brand C, 30 customers liked brands A and B, 25 customers liked brands B and C, 20 customers liked brands A and C and the same number of those customers that liked all three brands also dislike all the brand.


In a sample of 275 customers, how many of them liked

(i) brands A, B, %26amp; C,(ii) brands A or B but not C, (iii) brands B %26amp; C but not A, (iv). single brand only?
10 people liked all the brands as well as hated them.





Use the relation





A U B U C = A + B + C - A∩B - A∩C - B∩C + A∩B∩C





Let the last term be x and A U B U C = 275 - x





Then





275-x = 120 + 100 + 110 - 30 - 25 - 20 +x





gives 275-x = 255+x





Thus x = 10
Reply:What is your question? (Your last sentence broke.)

calling cards

What Is Visual C++ used for?

I'm wondering if I should get Visual C++ (Visual Studio) and I've looked around and sites say that it's used to make Windows programs? Is the main objective of Visual C++ different than regular c++ IDE's such as Dev C++ to make programs? I can't figure out how to make a program from scratch on a free trial version of Visual C++. Well, any info is great.

What Is Visual C++ used for?
Visual C++ helps the user create programs. Dev C++ does the same, they are both the same language program, just different program.





Kind of like OpenOffice and Microsoft Word.





In order to make a program from scratch you need to learn how to program in language C.





There are many ebooks out there and tutorials.


You need to start out my a simple Hello World program.





Here are some tutorial sites:





http://www.iu.hio.no/~mark/CTutorial/CTu...


http://www.scit.wlv.ac.uk/~jphb/cbook/ht...


http://www.cprogramming.com/tutorial.htm...


http://www.howstuffworks.com/c.htm


http://www.physics.drexel.edu/courses/Co...
Reply:It's for programs like Windows Movie Maker, Windows DVD Maker, and etc. I use it for windows movie maker. You have to use xmls for that though. But it's just for programs that read those formats you can make in it. But if you know the coding for it you could somehow make a program.


But


%26lt;Param name="[Type Of Thing]" value="[Such as a number in decimal format like 1.0]" /%26gt;


Is a line for XML.


That's all I'm giving you for an answer!





A Free Trial version of C++? Weird. Microsoft gave you a serial for it and you put it in at Help%26gt;Register Product.


Looking for the C&A Palomino horse ride that was in C&A stores. 10p a ride. Who made/hired the horse ride?

I am looking for the C%26amp;A Palomino horse ride that was in C%26amp;A stores in the UK and I believe in overseas C%26amp;A stores. In the UK the ride used to be 10p per go and the horse went faster when you pulled on the reigns. Who manufactured the horse or hired it to the C%26amp;A stores. Where are they now and where could I buy one or see a photo or web link? I think it was also in the background in the film Big at the fairground with Tom Hanks. Please help me find one.

Looking for the C%26amp;A Palomino horse ride that was in C%26amp;A stores. 10p a ride. Who made/hired the horse ride?
I'm not sure about in the UK.. but they are alive and well in the US! You can find them by searching "kiddie rides" here. I spent many happy times as a kid on one of these even if I didn't have the dime!





http://www.homegameroom.com/catalog/kids...


C Programming Language: Using Recursion to Print the Fibonacci Series?

The Fibonacci series





0, 1, 1, 2, 3, 5, 8, 13, 21, …..





begins with the terms 0 and 1 and has the property that each succeeding term is the sum of the two preceding terms.





For this problem, we are asked to write a recursive function fib(n) that calculates the nth Fibonacci number. Recursion MUST be used.





In an earlier problem, we where asked to do the exact same thing, except we where to NOT use recursion. For that problem, I used the following code (between the dotted lines):





--------------------------------------...





main()


{


int c=1,f=0,s=1;


int i;


printf("%d%20d\n",f,f);


printf("%d%20d\n",s,s);


for (i=2; i%26lt;5||f%26lt;s; i++)


{


c=f+s;


f=s;


s=c;


printf("%d%20d\n",i,c);


}


}





--------------------------------------...





Which gave the correct output:








0 0


1 1


2 1


3 2


4 3


5 5


6 8


7 13


8 21


9 34


10 55


11 89


12 144


13 233


14 377


15 610


16 987


17 1597


18 2584


19 4181


20 6765


21 10946


22 17711


23 28657


24 46368


25 75025


26 121393


27 196418


28 317811


29 514229


30 832040


31 1346269


32 2178309


33 3524578


34 5702887


35 9227465


36 14930352


37 24157817


38 39088169


39 63245986


40 102334155


41 165580141


42 267914296


43 433494437


44 701408733


45 1134903170


46 1836311903


47 -1323752223














While I was able to come up with a code that works nonrecursively, I am not sure how to write a program that will print out the Fibonacci series by using recursion. Help would be greatly appreciated.

C Programming Language: Using Recursion to Print the Fibonacci Series?
That's interesting. Usually they have students try these methods in the opposite order, to show that recursive algorithms can be transformed into non-recursive ones.





The way to solve this is by going back to the mathematical definition of the Fibonacci series:


f(1) = 1


f(2) = 1


f(n) = f(n-1) + f(n-2)





So, to find a particular number in the Fibonacci series, you just need to calculate the previous two numbers and add them together.





If you take that last formula and simply translate it into a C function, you'll be most of the way there. Don't forget to treat n=1 and n=2 as special cases.
Reply:Simple: this is in my book:





//Begin function Fibonacci





int Fibonacci(int n)


{


if(n==0||n==1)


return 1;


else


return Fibonacci(n-1)+Fibonacci(n-2);


}





//End function Fibonacci
Reply:#include %26lt;iostream%26gt;





int main()


{


//define first two fibonacci series numbers.


int fib1 = 0;


int fib2 = 1;





//declare the variable to store the next number of fibonacci series


int fib3;





//declare the variable to store how many numbers to be printed. Default is 2.


int numbers = 2;





//the counter to keep track how many numbers are printed.


int counter = 2;





//Ask user how many numbers of the fibonacci series need to be printed.


std::cout %26lt;%26lt; "How many Fibonacci number you need ? : " ;





//Store the number.


std::cin %26gt;%26gt; numbers;





//If number entered is less than 3, exit the program.


if (numbers %26lt; 3) return 0;





//Print the first two element.


std::cout %26lt;%26lt; fib1 %26lt;%26lt; "\t" %26lt;%26lt; fib2;





//do-while loop to calculate the new element of the series and printing the same.


do {


counter++;


fib3 = fib1 + fib2;


std::cout %26lt;%26lt; "\t" %26lt;%26lt; fib3;


fib1 = fib2;


fib2 = fib3;


} while (counter %26lt;= numbers);





std::cout %26lt;%26lt; std::endl;


system("pause");


return 0;


}


C:\ access denied?

i'm not really sure when this started because i don't often access C:\ from My Computer but just a few days ago, whenever i click C:\ in My Computer, i keep getting the "C:\ Access Denied" message. I have granted all my accounts access and I am also logged in as an administrator. The only thing I did drastically different is install my Sony Ericsson PC Suite (which I have already uninstalled to see if it makes a difference but it didn't).





I have tried system restore and logging in safe mode but i still keep getting the message. I can open C:\ though when I type it into the address bar and I can also explore it, I just can't click it from My Computer. Any help would be greatly appreciated.





I'm running Windows XP SP2 %26amp; an NTFS drive.

C:\ access denied?
the few times i have seen this it has ALWAYS been do the the installation of a firewall such as norton suite , since your saying in your post that you have installed and uninstalled Ericsson pc suite my educated guess would be that their are traces of the firewall still siting in the registry that are not allowing access tot he C drive do to a corrupt registry key , i would try using a good trusted registry cleaner such as CCleaner this should fix your issue
Reply:ANYTIME YOU DO ANYTHING IT ACCESSES (C;)


THIS IS YOUR HARD DRIVE,,,,,,,,,,,,,,,,,,,,,,,,,,,,





DELETE ALL USER ACCOUNTS BUT NOT THE ADMINISTRATOR,,,,,,,,,,,,,,,,,,,,





CHECK PROPERTIES ON C ,,,,,,, GO TO SHARING AND SEE IF THE FOLDER IS CHECKED PRIVATE ,,,,,,,,,,





RESTART PC,,,,,,,,,,,,,,,,
Reply:Boot to safe mode, Start %26gt; Control... %26gt; User... %26gt; see if your admin is under computer admin. Delete other unknown accounts.





Open my computer, right-click C drive %26gt; properties %26gt; in security tab, make sure you have all permissions checked for yourself.
Reply:go to search..


click on all files and folder.


LOOK IN click on my computer


in the name of the file write Program files


let it search.


there u go u r in C.


u can explore c from there.. there is a way to unlock it


but itz too long


.

pokemon cards