April 01, 2003
AFP: Bombings kill 48 more civilians south of Baghdad

Yahoo! News - Bombings kill 48 more civilians south of Baghdad

HILLA, Iraq (AFP) - Forty-eight more civilians, including women and children, have been killed and 310 wounded in US-British bombings around this town south of Baghdad in the last 24 hours, a hospital director revealed.

The deaths brought to 73 the number of Iraqi civilians who have died under allied bombings since Monday.

Thirty-three civilians, including women and children, were killed and 310 wounded in a coalition bombing on the southern province of Babylon on Tuesday morning, a hospital director said.

Murtada Abbas said the bombing targeted the Nader residential area at the southern outskirts of the farming town of Hilla, 80 kilometres (50 miles) south of the capital.

He was speaking at the Hilla hospital where a large number of children lay wounded under blankets on the floor due to a shortage of beds.

At the scene of the bombing, dozens of what seemed to be parts of cluster bombs equipped with small parachutes were peppered over a large area, an AFP correspondent at the site said.

Iraqi soldiers were seen collecting the debris, which witnesses said coalition warplanes had dropped over the neighborhood. The soldiers poured fuel on the bombs before setting them on fire to explode the ordnance.

Dozens of homes were destroyed in the bombing that also killed donkeys and chickens, the correspondent said.

Fifteen members of a family were killed late Monday when their pickup truck was blown up by a rocket from a US Apache helicopter in the region of Haidariya near Hilla, the sole survivor of the attack told AFP on Tuesday.

Razek al-Kazem al-Khafaji said he lost his wife, six children, his father, his mother, his three brothers and their wives.

Khafaji, sitting among the 15 coffins at the local hospital, said the family was fleeing fierce fighting in Nasiriya, further south, when they were targetted by a US helicopter in Haidariya.

US troops admitted killing seven women and children when they opened fire Monday on a civilian vehicle at a military checkpoint manned by the US Army's Third Infantry Division at Najaf, 150 kilometers (95 miles) south of Baghdad.

On Monday, eighteen civilians were also killed in coalition bombings on Baghdad, according to Information Minister Mohammad Said al-Sahhaf.

Posted by Brian Stefans at April 01, 2003 12:21 PM
Comments

Each Stack Frame represents a function. The bottom frame is always the main function, and the frames above it are the other functions that main calls. At any given time, the stack can show you the path your code has taken to get to where it is. The top frame represents the function the code is currently executing, and the frame below it is the function that called the current function, and the frame below that represents the function that called the function that called the current function, and so on all the way down to main, which is the starting point of any C program.

Posted by: Lionel on January 19, 2004 03:17 AM

The rest of our conversion follows a similar vein. Instead of going through line by line, let's just compare end results: when the transition is complete, the code that used to read:

Posted by: Ferdinand on January 19, 2004 03:18 AM

Let's see an example by converting our favoriteNumber variable from a stack variable to a heap variable. The first thing we'll do is find the project we've been working on and open it up in Project Builder. In the file, we'll start right at the top and work our way down. Under the line:

Posted by: Eli on January 19, 2004 03:18 AM

This code should compile and run just fine, and you should see no changes in how the program works. So why did we do all of that?

Posted by: Augustus on January 19, 2004 03:19 AM

This variable is then used in various lines of code, holding values given it by variable assignments along the way. In the course of its life, a variable can hold any number of variables and be used in any number of different ways. This flexibility is built on the precept we just learned: a variable is really just a block of bits, and those bits can hold whatever data the program needs to remember. They can hold enough data to remember an integer from as low as -2,147,483,647 up to 2,147,483,647 (one less than plus or minus 2^31). They can remember one character of writing. They can keep a decimal number with a huge amount of precision and a giant range. They can hold a time accurate to the second in a range of centuries. A few bits is not to be scoffed at.

Posted by: Drugo on January 19, 2004 03:19 AM
-->