question-how to run a c programme.
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
The differences between Windows XP and Windows Visa
Is c procedural or functional?
write a program to display numbers from 1 to 10 and 10 to 1?
related proverb of "dont count your chicken before it hatches"
wat is the meaning of c?
What is floating point constants?
what is the difference between %d and %*d in c languaga?
What is the difference between NULL and NUL?
what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }
WHAT IS C?
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
wat is the output #define VOLEDEMORT _who_must_not_be_named int main() { printf("VOLEDEMORT"); }