Skip to main content

In this blogging you know about digital world.

Function in C

  Function Function : In C programming, a function is a self-contained block of code that performs a specific task or a set of related tasks. Functions are used to break down a program into smaller, more manageable pieces, making the code more organized, readable, and reusable. C supports various types of functions, including library functions and user-defined functions. Below, I'll describe functions in C with examples and discuss their types. Function Syntax: return_type function_name(parameters) {     // Function body     // Statements to perform a task     return value; // (optional) Return value } Here's a breakdown of the elements: - `return_type`: Specifies the data type of the value the function returns. Use `void` if the function doesn't return anything. - `function_name`: A unique identifier for the function. - `parameters`: Input values that the function can accept (optional). - `function_body`: Conta...

My Wishes....

My Wishes.

If I could have my wishes,
If wishes did come true;
I would wish for happiness,
And a long full life for you.
~~~

I would wish for laughter,
And fill your life with song;
Then ask for peace and joy and love,
To follow you all day long.
~~~

Then I would ask for peaceful rest,
To visit you at night;
And that your every morning,
Dawn shimmering and bright.
~~~

I would ask for nothing,
To give back to myself;
As long as you are happy,
I want for nothing else.
~~~

For just to see contentment,
On your face and know you're fine;
Would truly satisfy me,
And bring joy to this heart of mine.
~~~

If I could have my wishes,
If wishes did come true;
I'd wish for the sun and the moon and the stars,
And I'd give them all to you.
~~~

Comments

Popular Posts