Every time i run a c-code in editor,
getting some runtime error and editor is disposing,
even after reinstalling the software
what may be the problem?
Answers were Sorted based on User's Feedback
mostly the run time error will come if u dont link any files
properly u may reach these run time error..... just check it
out... as for i know this can also be a reason......
thank u
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / swapnil
make sure that your c file is in c:\tc\bin
after doing that run program
| Is This Answer Correct ? | 2 Yes | 1 No |
main() { FILE *fs; char c[10]; fs = fopen(“source.txt”, ”r”); /* source.txt exists and contains “Vector Institute” */ fseek(fs,0,SEEK_END); fseek(fs,-3L,SEEK_CUR); fgets(c,5,fs); puts(c); }
write a program to swap two numbers without using temporary variable?
What is structure padding in c?
Explain how can I pad a string to a known length?
what is diff between localstatic and globalstatis variable possible 2 use in another file...?
What is floating point constants?
What does the message "automatic aggregate intialization is an ansi feature" mean?
What is the output of below code? main() { static in a=5; printf("%3d",a--); if(a) main(); }
Prove or disprove P!=NP.
what is the use of macro program
How can I change the size of the dynamically allocated array?
code for quick sort?