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
a c code by using memory allocation for add ,multiply of sprase matrixes
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
What is the scope of static variable in c?
How do you use a 'Local Block'?
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
What does the format %10.2 mean when included in a printf statement?
Explain how are 16- and 32-bit numbers stored?
What are the advantages of using Unions?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
What is 02d in c?
What is c programming structure?
What is C language ?
Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.
What is dynamic variable in c?
What are header files in c?