C Language Learning 002: The first complete C program code

Source: Internet
Author: User

#include <stdio.h>//referencing the relevant external library, stdio.h contains the code for the terminal to read and write data//Program entrance, the program through the return value of the main function to determine whether the program is successful, 0 for success, not 0 to indicate that the program is running in addition to the problem//The return value of Main in the earlier ANSI C standard can be a void type, but the C99 must be an intintMain () {intdecks; Puts ("The input has several decks of cards");//print data at the terminalscanf"%i", &decks);//%i receives an integer    if(decks<1) {puts ("Invalid number of pairs"); return 1; } printf ("there are%i cards \ n", (decks* the));//print data at the terminal    return 0;}

C Language Learning 002: The first complete C program code

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.