How the C program can be compiled?

Answer Posted / sanjay singh

Simply by pressing Alt + F9 Key from the keyboard.


"Note we can also execute a program with compiling if it has
no error in the program in the coding form"

Is This Answer Correct ?    1 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is malloc and calloc?

578


Write a Program to accept different goods with the number, price and date of purchase and display them

5454


Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.

707


what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?

1909


What is an identifier?

632






explain what are pointers?

620


List the difference between a 'copy constructor' and a 'assignment operator' in C?

642


Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.

687


How many types of operator or there in c?

607


What is the meaning of c in c language?

598


Explain how can you restore a redirected standard stream?

594


What is a pointer on a pointer in c programming language?

623


A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream

671


#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }

633


Is it possible to initialize a variable at the time it was declared?

758