hi how to convert program from notepad to turboc editor can
u please help me
Answer Posted / vignesh1988i
1) just save ur notepad program with extension .c or .cpp
2) cut that notepad file from the location and paste it in ur folder where all ur turboC files are stored...
3) open ur Turbo C editor... and open the file which u have pasted... it will be available for u..
thank u
| Is This Answer Correct ? | 71 Yes | 33 No |
Post New Answer View All Answers
How arrays can be passed to a user defined function
What is nested structure with example?
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
Iam a B.Tech graduate and completed my engineering in 2009, from 2005 to 2009 and after that i had done nothing.Now i want to do job and get into BPO field . Friends give me suggestions as what to say in interview... if they ask me that what would you had done ... these many years without doing job ??????? pls urgent
What are the salient features of c languages?
What are the rules for identifiers in c?
What is scanf () in c?
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
Write a program to print ASCII code for a given digit.
What does int main () mean?
What is size of union in c?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.
What are 3 types of structures?
Explain what is the benefit of using an enum rather than a #define constant?