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 |
Write the Program to reverse a string using pointers.
Explain a file operation in C with an example.
what is ur strangth & weekness
0 Answers Cognizant, LG Soft, NetEnrich,
Find the O/p of the following struct node { char *name; int num; }; int main() { struct node s1={"Harry",1331}; struct node s2=s1; if(s1==s2) printf("Same"); else printf("Diff"); }
How many keywords (reserve words) are in c?
Is there a built-in function in C that can be used for sorting data?
What are the preprocessor categories?
how to make c program without a libary? e.g.#include<stdio.h> libary is not in c progaram.
how to swap 2 numbers in a single statement?
What are bit fields? What is their use?
What language is windows 1.0 written?
Describe newline escape sequence with a sample program?