Wednesday, October 20, 2021

 

C "Hello, World!" Program

In this example, you will learn to print "Hello, World!" on the screen in C programming.

Video: Get Started With C Programming

To understand this example, you should have the knowledge of the following C programming topics:


Program to Display "Hello, World!"

#include <stdio.h>
int main() {
   // printf() displays the string inside quotation
   printf("Hello, World!");
   return 0;
}

Output

Hello, World!

How "Hello, World!" program works?

  • The #include is a preprocessor command that tells the compiler to include the contents of stdio.h (standard input and output) file in the program.
  • The stdio.h file contains functions such as scanf() and printf() to take input and display output respectively.
  • If you use the printf() function without writing #include <stdio.h>, the program will not compile.
  • The execution of a C program starts from the main() function.
  • printf() is a library function to send formatted output to the screen. In this program, printf() displays Hello, World! text on the screen.
  • The return 0; statement is the "Exit status" of the program. In simple terms, the program ends with this statement. Download

  • Its ABDULICREGION BLOGSPOT....

Tuesday, October 12, 2021

COMRADE MADAKI APPOINTMENT AS A MEMBER OF NANS NATIONAL AND PUBLICITY COMMITTEE

Kogi Poly Rector Dr. Usman Salisu Ogbo congratulates Comrade Madaki T. Noah on his appointment as Member, NANS National Media and Publicity Committee.

Congratulations to him once more.

Click ---> Read more news

© Madaki T. Decoster

Sunday, July 18, 2021

2021 ONLINE FREE LOAN

Click the below link to apply  for Free Loan

CLICK TO APPLY FOR FREE LOAN 

 

Funds are not just an essential commodity to meet your everyday needs. Today, it can be termed as an enabler that helps you get things done. Be it meeting the expenses of an unforeseen emergency, going on a holiday or purchasing your dream home, you need to have access to adequate finance to reach these financial goals.


What is an Instant Cash Loan?

Despite meticulous planning, it is possible that you may be in need of additional finance on short notice. To tide over such instances, experts recommend that you always have a readily accessible source of funds to meet any unplanned expenditures in the short term.

That said, there can be situations where you may not have access to your funds immediately or may have fallen short of what you actually need. That is when the instant cash loan enters the scene.

Why Opt For Instant Cash Loans?

Instant cash loans are a truly modern source of financing your expenses when you run out of cash. It is especially helpful when you need a small amount urgently and don’t have enough time to wait for your salary day. Alternatively, you need a small amount, and are confident that you will be able to repay the loan within a few months (less than a year). Hence, be it paying your rent, utility bills, medical needs or going the extravagant route to upgrading to the latest gadget, it serves all kinds of consumer needs. 

Applying for an instant cash loan online is easy, with very little paperwork.

What are the Features of an Instant Cash Loan?

Instant Cash Loans are feature-rich. Hence, the reason for their increasing popularity. Top features include:

What is the Alternative to Instant Cash Loans?

Here are a few circumstances under which instant cash loans may not be a suitable option:

If any of the above are true, you can choose to apply for an instant free loan from Fullerton India. 

General eligibility criteria for loans are as follows:

Please note that your overall eligibility will also depend on your profile and requirements, and other factors such as repayment capacity, credit history, nature of employment, etc.Free Loan

How to Apply For a Personal Loan?

If you have successfully met the personal loan eligibility requirements, you may proceed to the next stage of the application process.

Sunday, February 9, 2020

TECHNOLOGY FORUM

Image result for technology ads



THE GLOBAL MEDIA PLATFORM
Learn more @ www.teads.com















FACEBOOK MARKETING COMMUNITY
learn more @ www.planetmarketing.com
Image result for technology ads











Friday, February 7, 2020

EVERLASTING QUOTE OF LIFE

EVERLASTING PRAYERFUL QUOTE

   According to it, says wherever or whenever you stoop in difficulty, call for Him, he heard and stay silent, it doesn't mean that He is ignoring but pending it for great, great difficulty, because it does it work in a very amazing ways. Only Him Deserves to be Worship.
To be saying: -
The time used in praying
is never wasted, because
Prayer is the link that connects
us with Him.


TIME WASTE IN PRAYER IS NEVER WASTED

 IF YES!!!  DROP YOUR COMMENT

  C "Hello, World!" Program In this example, you will learn to print "Hello, World!" on the screen in C programming. Vid...