hi how to convert program from notepad to turboc editor can
u please help me
Answers were Sorted based on User's Feedback
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 |
Answer / kiran
Type the C Program and save it in the location where your C Programs are stored. Open TC compiler and select the file, compile and run.
| Is This Answer Correct ? | 2 Yes | 7 No |
Answer / musthafa
copy the lines from the notepad and paste in the c program editor.
| Is This Answer Correct ? | 8 Yes | 59 No |
Define macros.
what is call by value and call by reference
Is it acceptable to declare/define a variable in a c header?
Why does not c have an exponentiation operator?
You have an array of n integers, randomly ordered with value 1 to n-1.The array is such that there is only one and one value occurred twice. How will you find this number?
how many errors in c explain deply
What is meant by type specifiers?
Why pointers are used?
Is null a keyword in c?
what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }
write a program to check whether a number is Peterson or not.
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.