Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

What is c language and why we use it?

0 Answers  


12. Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV

4 Answers   Accenture,


DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?

2 Answers   Wipro,


enum day = { jan = 1 ,feb=4, april, may} what is the value of may? a)4 b)5 c)6 d)11 e)none of the above

8 Answers   HCL, Wipro,


we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above

0 Answers  


what will be the output of this program? void main() { int a[]={5,10,15}; int i=0,num; num=a[++i] + ++i +(++i); printf("%d",num); }

6 Answers   Microsoft,


Why header files are used?

0 Answers  


what will be the output of the following program, justify? #define TEST int TEST getdata() { static i; i+=10; return i; } main() { int k; k = getdata(); }

3 Answers  


Explain the use of 'auto' keyword

0 Answers  


What is structure padding ?

3 Answers   HP,


write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.

0 Answers  


what is the diff between the printf and sprintf functions?? and what is the syntax for this two functions ??

5 Answers  


Categories