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 |
What is %lu in c?
Explain how do you declare an array that will hold more than 64kb of data?
How can you be sure that a program follows the ANSI C standard?
11. Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage
Tell me can the size of an array be declared at runtime?
what defference between c and c++ ?
What is your stream meaning?
enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }
Explain how can I write functions that take a variable number of arguments?
What is c++ used for today?
how to print this sereis 2 4 3 6 5..........?
write a program to print the all 4digits numbers & whose squares must me even numbers?