I am new to this forum and C. I have made a program but i am not able to see it output. After compiling the console again comes before showimg any output? Any idea why it is happening?
To make C-4 blocks, explosives manufacturers take RDX in powder form and mix it with water to form a slurry. They then add the binder material, dissolved in a solvent, and mix the materials with an agitator. They remove the solvent through distillation, and remove the water through drying and filtering. --------------------------------------------------- jacksen Intenet Marketing
The most simple output statement can be produced in C’ Language by using printf statement. It allows you to display information required to the user and also prints the variables we can also format the output and provide text labels. The simple statement such as
Printf (“Enter 2 numbers”);
Prompts the message enclosed in the quotation to be displayed.
A simple program to illustrate the use of printf statement:-
#include < stdio.h > main ( ) { printf (“Hello!”); printf (“Welcome to the world of Engineering!”); } ------------------------------- Samflutch