Saturday, May 22, 2010

I had a c section nearly 2 years ago and im in agony wer my scar is, please help?

I had an emergency c section nearly 2 year ago and letely inside my stomach is realy painfull it feels just like it did after having the op, like inside is bruised , maybe its my whom I dont have a clue, everytime i cough or bend over it hurts, I often get pains and were the scar feels uncomftorble n it aches but this is really bad now. does any1 know what this can be and should i be worried and go 2 the doctors, please help and thank you.

I had a c section nearly 2 years ago and im in agony wer my scar is, please help?
You need to see another Doctor, a new one you have not seen and get a second opinion. I have 2 c-sections and from my first my scar was huge and I had a very bad infection that lasted 9 months. After wards I had huge scar tissue and it caused alot of pain I was unable to bend over with becoming dizzy. I live in a small town and did not know I could have seen any doc of my choosing.


to me it really sounds like you new new eyes and a second opionion. You might have a large amount of scar tissue which can be very pain ful because scars don't strech when you move. Ifthis is the case it can be a very easy fix, request a x-ray or sonigram to see exactly what is goin on and request a CBC count to make surethere is not a infection going on. I wish you all the luck
Reply:I recommend you see a dr., maybe someone new. It can be tissue scarring or a hernia.
Reply:Definitely see your doctor right away. Hernias, for one thing, can result after abdominal surgery. Your "everytime i cough or bend over it hurts" sounds very familiar to me.





Take care...
Reply:Get it checked by a doctor.


Help with writing c++ programmes?

does anybody know how to write programmes in c++ which will (a)find the range of integers in a computer system,


and,


(b)examine the floating point aritmethic.


Would really appreciate some help with this please!!!!!

Help with writing c++ programmes?
Does not look easy. May be you can contact a c++ programmer at websites like http://askexpert.info/
Reply:You can get the number of bytes in an int with sizeof( int ). For instance, it will return 4 for 32-bit integers. Then the range is -2^31 to 2^31-1.





What, exactly, are you supposed to glean from examining the floating point arithmetic? Your question isn't specific enough.


In need of C++ programming help please!!?

I have been taking a programming course for a few weeks now and need a little help with an assignment. My assignment is to write a program that displays a menu with the the option to find the largest # with a known quantity of numbers; find the smallest # with an unknown quantity of numbers or quit.





Here is what I have so far, but my book has gotten me so confused. I need some pointers as to what I am missing or what is wrong and needs fixed. Any help would be greatly appreciated.


Serious answers only please.





#include %26lt;iostream%26gt;


using namespace std;


const int SENTINEL = -99; //to end option 'B'


int number; //variable to store numbers


int counter;


char limit; //variable to store amount of numbers to input in 'A'





int main()


{


char sel;


number = 0;


int count = 0;





cout %26lt;%26lt; "A) Find the largest # in a list." %26lt;%26lt; endl;


cout %26lt;%26lt; "B) Find the smallest # in a list." %26lt;%26lt; endl;


cout %26lt;%26lt; "C) Quit." %26lt;%26lt; endl;


cout %26lt;%26lt; "What do you want to do?" %26lt;%26lt; endl;


cin %26gt;%26gt; sel;


switch (sel)

In need of C++ programming help please!!?
You would be better off going to www.homework.com or to www.studybuddy.com There is a lot of help there.
Reply:You're overwriting the previously entered number every time you cin a number from the list.





You need to set up an array, say


int list[100];





Then use an integer variable to count your position in the array


int i;


cout %26lt;%26lt; "Enter the numbers for the list: "


while(i=0;i %26lt; listsize;i++)


cin %26gt;%26gt; list[i];





The better way to do this is to use a linked list since there is then no upper bound on the size of the list of numbers, but that is probably a bit too high level for an early programming class. I'd stick with the array solution.
Reply:well, first, your program will only run through 1 selection then end. you need to make a loop with your selections in it. something like:


do


{


//your selections


//your code


}


while (sel != 'c' || sel != 'C');





next, in your "case 'A'" you never initialize counter or increment it. did you mean to use count instead?





in your "case 'B'" you never increment count, and all it does is read in numbers. I assume you just didnt finish it yet because your still trying to get case a to work first.





thats for starters just off the top of my head
Reply:#include %26lt;iostream%26gt;


#include %26lt;cstdlib%26gt;


using namespace std;


int main(){


int i,min_val,max_val;


int list[10];


for(i=0;i%26lt;10;i++) list[i]=rand();


min_val=list[0];


for(i=1;i%26lt;10;i++)


if(min_val%26gt;list[i]) min_val=list[i]


cout%26lt;%26lt;"minimun value: "%26lt;%26lt;min_val%26lt;%26lt;"\n";


max_val=list[0];


for(i=1;i%26lt;10;i++)


if(max_val%26lt;lsit[i])


max_val=list[i];


cout%26lt;%26lt;maximum value: "%26lt;%26lt;max_val%26lt;%26lt;"\n";


return 0;


}

bridal flowers

How to connect c with ms-access can any 1 help me out?????????????????

how to connect c with ms-access can any 1 help me out?????????????????

How to connect c with ms-access can any 1 help me out?????????????????
read this tutorial :


http://www.coding-zone.co.uk/cpp/article...





hope this help you


Visual Studio 2005 C++ Help?

I'm new to C++, please help.





Here is my code. When I run it, the window disappears right away. How can the "Press any key to exit" appears?





#include %26lt;iostream%26gt;





using namespace std;





int main()


{


cout %26lt;%26lt; "Hello world.";





return 0;


}

Visual Studio 2005 C++ Help?
obviously it will because you do not have any pause, use getch() after cout%26lt;%26lt;"hello world";





Getch will wait until user presses any key then exits.


Sunday, August 2, 2009

Help needed on C# for negating an integer using bit shift/Two's component?

Hi there,


I have an integer say 30 and i want to make it -30 (minus thirty) but i dont wanna use this :-





int a = 30;


a = a * (-1);





I wanna make use of bit operators .. can any one please help me on this. The code i need is in c#.NET.


Is it so that using the multiplication method (with -1) dosent make any difference, as the final assembly code (CLI) generated for this code will be efficient and take care of this ??


I hope u understood the problem.


Thanks in advance, appriciate you help.





.[]\[].[].[]\[].

Help needed on C# for negating an integer using bit shift/Two's component?
int a=7;


a = ~a;


a++;





That should do it.


Help With Visual C# Code?

Does anyone know of a good web site or book for individuals learning how to program in Visual C# using the .NET framework? Specifically, I am looking for tutorials that explain classes, methods, and objects. I am a student with no formal programming experience and would greatly appreciate your help - thanks!!!

Help With Visual C# Code?
I also suggest using the code project.





In addition to using the examples on that site there's also a free development environment if it's any help to you.


First download the dot net sdk from Microsofts website and then the IDE from here - http://www.icsharpcode.net/OpenSource/SD...





I've been developing c# desktop apps with this IDE for a few years and I'm very happy with it. If you want some help I'll send you some starter project specs and review your work. Your call, just email me.
Reply:www.codeproject.com is great
Reply:here is a learning VEDIOS for C#, it treats you from begining to be expert.


ENJOY IT.


http://msdn.microsoft.com/vcsharp/progra...

wedding reception flowers