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?
Answer Posted / 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 |
Post New Answer View All Answers
What is sizeof array in c?
How macro execution is faster than function ?
What is the use of printf() and scanf() functions?
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
What is the use of in c?
I completed my B.tech (IT). Actually I want to develop virtual object that which will change software technology in the future. To develop virtual object what course I have to take. can I any professor to help me.
What is the difference between text and binary i/o?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
What are register variables in c?
How do I swap bytes?
Explain what are reserved words?
What is the role of this pointer?
Explain how can you restore a redirected standard stream?
What does a pointer variable always consist of?
What do you mean by recursion in c?