question-how to run a c programme.

Answers were Sorted based on User's Feedback



question-how to run a c programme...

Answer / suresh

press ctrl+f9

Is This Answer Correct ?    13 Yes 0 No

question-how to run a c programme...

Answer / guest

ctrl+f9

Is This Answer Correct ?    9 Yes 2 No

question-how to run a c programme...

Answer / lucky varshney

press ctrl+f9

Is This Answer Correct ?    1 Yes 0 No

question-how to run a c programme...

Answer / sam

In case of unix
cc FileName.c to compile and the output would be in a file
to fetch it
type ./a.out

Is This Answer Correct ?    1 Yes 0 No

question-how to run a c programme...

Answer / mrs.ahmer

The program can be loaded in the memory by selecting
RUN>RUN from menu bar or pressing CTRL+F9.user can display
the output screen be selecting WINDOW>USER SCREEN or
pressing ALT+F5

Is This Answer Correct ?    1 Yes 0 No

question-how to run a c programme...

Answer / jogdand mahesh

Goes DOs Windows and set the path of C language type the
TCC File_Name.C
Your Programe Will be RUN

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More C Interview Questions

Is this program statement valid? INT = 10.50;

0 Answers  


4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.

0 Answers   TCS,


What is encapsulation?

2 Answers  


program to find the second largest word in a paragraph amongst all words that repeat more thn twice

4 Answers   CTS, iGate,


what is call by value and call by reference

4 Answers  






What is the use of extern in c?

0 Answers  


write a program in C to swap two variables

7 Answers   Attrabyte, Marlabs,


What type is sizeof?

0 Answers  


program to find out date after adding 31 days to a date in the month of febraury also consider the leap year

0 Answers  


Evaluate the following: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); 1) 10 2) 11 3) 1

6 Answers  


what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;

0 Answers   L&T,


What is a function in c?

0 Answers  


Categories