answersLogoWhite

0

C program must have

Updated: 8/18/2019
User Avatar

Wiki User

11y ago

Best Answer

Not, there are many people, who live happily without C-program.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: C program must have
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What must every c program have?

A main function must be present in every C program.


What is the only function all C plus plus programs must contain?

Every C plus plus program that is a main program must have the function 'main'.


Write a program in C without any functions?

It is not possible. In C, any program must have at least one function to be able to compile and execute properly: the function main()


What must an opening brace in a C plus plus program be?

An opening brace must be terminated with a closing brace in C++. Braces are used to enclose code blocks and initialiser lists.


What is the meaning of statement missing in function main in c language?

Every C program must have a function, named main(), which is where the program starts execution. If there is no function main(), the computer does not know where to start running the program. The function main() must also do something; if it is just empty, some smarter compilers will note that there is nothing for the program to do, and will give this sort of error message to indicate that you forgot to tell the program what to do.


How do you write a programme in c?

Basic Program in "C" #include <stdio.h> /*This is the standard input/output library function*/ main(void) /*All C programs must have the function main*/ { char ch; printf("This is a C Program."); /* Every line of code in C must end with a semi colon*/ printf("Welcome to C!");/*the printf outputs the line of text to the screen*/ scanf("%c%c", &ch, &ch); /* This is a trick way to pause the computer so you can read the information on the screen*/ return 0; /* Indicates that your program has terminated successfully*/


C program was introduced in the year?

c program was introduced in the year 1972 by Dennis RitchieNo, it was the C language, not the C program.


Features of c program?

the features of a C program


How do you make a program for PC's?

Learning to program is a bit complex as you must learn a language in computer programming such as C or C++. This language must be manipulated to do certain functions that you deem worthy then the separate functions must be programmed to come together and work as a unit and not have a conflict of interests in able to work properly.


What is executive a c program?

I think it is 'execution of a C program'.


A C program using dynamic memory allocation to sort n names in ascending order?

Writing a C program that uses dynamic memory allocation to sort names in ascending order is a typical computer science assignment. To write this program, you must be in UNIX.


C program on left factoring in compiler design?

how to create a c program for left factoring.