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 |
Why is it that not all header files are declared in every C program?
proc() { static i=10; printf("%d",i); } If this proc() is called second time, what is the output?
How can I generate floating-point random numbers?
what is the output on the screen? int n; n=printf("my name is %d",printf("kiran %d",printf("kumar"))); printf("\n %d \n",n);
how do u find out the number of 1's in the binary representation of a decimal number without converting it into binary(i mean without dividing by 2 and finding out the remainder)? three lines of c code s there it seems...can anyone help
Which is the best website to learn c programming?
What are file streams?
print ur name without using any semicolon in c/c++....
21 Answers Bosch, TCS, Wipro,
Which of the Following will define a type NODE that is a node in a Linked list? A)struct node {NODE*next;int x;};type def struct node NODE; B)typedef struct NODE {struct NODE *next;int x;}; C)typedef struct NODE {NODE *next;int x;}; D)typedef struct {NODE *next;int x;}NODE;
Why do we use header files in c?
What's the difference between a linked list and an array?
Why do we use stdio h and conio h?