answersLogoWhite

0


Best Answer

No, thanks, I am not interested. Your teacher might want to see them.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Show you the c programs and their outputs?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What is the benift of learning c language?

You will be able to understand C programs. Also to write C programs.


How program can be complied in c?

C programs can be compiled with a C compiler. Are you surprised?


Write c programs to display 10 line biodata?

A C++ program can be used to write C programs that will display 10 lines of biodata. Many types of C programming can be written with a C++ program.


Is C language readable?

No, but source-programs written in C language are.


What is the use of the C language?

The C language (or more commonly C++) is the core of most programming done at the desktop level. Most programs written in Linux are in C or C++, as are most Windows programs. A number of languages in recent computer history have been designed to reduce the dependency on C and C++, but have still largely failed to replace C and C++ for high performance applications.

Related questions

Can all C programs are executable in C plus plus?

Some C programs can be compiled in C++, yes.


Where can you find flowcharts in C programs?

C programs don't contain flowcharts.


Can c write programs?

A programmer can write programs in C, but C can't write anything by itself.


What is the benift of learning c language?

You will be able to understand C programs. Also to write C programs.


Where can you get the c programs?

You can find C programs at http://talentsealed.blogspot.com.


How can you get outputs of C?

from various books.....try searching for ebooks.. from various books.....try searching for ebooks..


How program can be complied in c?

C programs can be compiled with a C compiler. Are you surprised?


Write c programs to display 10 line biodata?

A C++ program can be used to write C programs that will display 10 lines of biodata. Many types of C programming can be written with a C++ program.


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*/


Can you make programs of C in visual c plus plus?

Yes.


Is C language readable?

No, but source-programs written in C language are.


Write a program that outputs the source code of a program?

#include <stdio.h> main() { FILE *fd; int c; fd= fopen("./file.c","r"); while ( (c=fgetc(fd)) != EOF) { printf("%c", c); } fclose(fd); }