answersLogoWhite

0


Best Answer

Write a C program called MonthDays to find the number of days in a given month Test your code with different input values to demonstrate that your function is robust?

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Write a C program called MonthDays to find the number of days in a given month Test your code with different input values to demonstrate that your function is robust?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you call an external function or program that is written in different programming language?

It doesn't matter what language the external program or function was written in since all executables must be converted to machine code. To execute an external function, that function must reside in a library to which your program is linked and you must know the prototype of the function you intend to call. This is usually found in the library header file which can simply be included in your program. You can then call the external function just as you would an internal function. To execute a specific function in another program, however, you must use the command line interface for that program.


What is a capstone course project?

A capstone course project is typically a summative assignment at the end of a program or degree. The main purpose of a capstone course project is to demonstrate a culmination of learning throughout the program or degree. This project can be completed in many different forms, and there are times when the program or degree will allow the individual to decide on the best form they wish to use to demonstrate their learning.


Which function is supported by an application program?

which function is support by an application program


What are its program components?

the main() function,the#include Directive, the variable definition. function prototype, program statements, the function definition,program comments and braces are the components of program in C++


What r the Demerits of function in C?

Write a merits and demerits of using function in program


Why you divide a program into functions?

In order to make a large program more manageable, it is convenient to identify and isolate specific tasks that a program performs and to separate out those tasks into functions. These functions are used/invoked as needed by the main part of the program. They can also be invoked by other functions. Often a program will perform the same task in different parts of the program. Using a function to perform the task and invoking the function from the different parts of the program means that only one copy of the code is needed. This helps reduce the size of the program.


How you can measure program length?

you can measure code length using different techniques i.e Function Point, COCOMO...


How printf function is used within a C program and is different from putchar function?

1. use the help/manual 2. entirely different: put one character vs put string with formatted inserts


What is the name of the function which must be defined in a Java program?

The main function. Every program must have a main function and it must be declared static.


C program always begins with which function?

That's up to you, but the execution of the program begins with function main.


What is the function of car diagnostic software?

The function of car diagnostic software is to diagnose any potential problems the car may have. It reads data from the car and tries to spot any trends that may be cause for alarm. there have many car diagnostic program, in fact, different diagnostic run on different diagnostic program.


Where is the fuction call of main function?

The main function is the entry point into a program. When the Operating System launches the program the main function gets executed.