answersLogoWhite

0

Is C an application program

User Avatar

Anonymous

13y ago
Updated: 8/20/2019

No, it is a programming language. Or Carbon. Or 100. Or a vitamin.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

Is c an application or software?

"C" is a programming language. It is implemented by writing a program using the C syntax and then translated by a compiler, which is an application program.


What action takes place when you save a file opened in an application program?

C


How can you run C programs on a Mac OS X?

You need the program Xcode which is on one of the Leopard install disks. If you want to make a new C-Application, select "new Project" then "console application" then "standard application".


Is possible to transfer c sharp console application program to giff file type?

There is no standard file type as GIFF. You probably mean GIF (graphics interchange format). If so, the answer is no;- you cannot convert a C# console application program to an image.


What is an application program Explain how an application can be addremoved from a PC?

what is an application program? how an application can be add or remove from pc. what is an application program? how an application can be add or remove from pc.


How do you run c program without ideon dos?

Once the application is compiled, there is no need for an IDE.


How do you run a C program in Linux?

All binaries are launched by simply typing the name of the application.


State one example where a software application can be safely removed by deletion?

by deleting the program folder in the program files(C:) answered by oliver kakonda


Which function is supported by an application program?

which function is support by an application program


Is C plus plus an application program?

No. C++ is a computer language. The development system supporting it is a compiler, linker, editor, debugger, etc.No it is a programming language.


How do you patch on to an installed dir program?

find the application in the program files and patch it in the application.


How do you write simple C program?

The same way we do it in every other programming language: we start with the canonical "hello world" application: #include<stdio.h> int main (void) { printf ("Hello world!\n"); return 0; } Every other C program is merely an extension of the hello world application.