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 |
Difference between pass by reference and pass by value?
I have an array of 100 elements. Each element contains some text. i want to: append a star character to the end of every fifth element remove every second character from every tenth element, and… add a line feed (ascii 10) after the 30th character of every array element whose length is greater than 30 characters.
Explain how can I prevent another program from modifying part of a file that I am modifying?
what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }
Difference between Function to pointer and pointer to function
What is volatile in c language?
What are the back slash character constants or escape sequence charactersavailable in c?
Why static variable is used in c?
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
why array index always starts from zero??
What is the difference between class and object in c?
Explain how can I manipulate strings of multibyte characters?