What are run-time errors?
No Answer is Posted For this Question
Be the First to Post Answer
What is a constant?
What is variable initialization and why is it important?
matrix multiplication fails introspect the causes for its failure and write down the possible reasons for its failurein c language.
what do you mean by inline function in C?
What is the maximum no. of arguments that can be given in a command line in C.?
1)what is the error in the following stmt where str is a char array and the stmt is supposed to traverse through the whole character string str? for(i=0;str[i];i++) a)There is no error. b)There shud be no ; after the stmt. c)The cond shud be str[i]!='\0' d)The cond shud be str[i]!=NULL e)i shud be initialized to 1
what does the following code do? fn(int n,int p,int r) { static int a=p; switch(n){ case 4:a+=a*r; case 3:a+=a*r; case 2:a+=a*r; case 1:a+=a*r; } } a.computes simple interest for one year b.computes amount on compound interest for 1 to 4 years c.computes simple interest for four year d.computes compound interst for 1 year
Stimulate calculators to perform addition,subtraction,multiplication and division on two numbers using if/else statement?
What are # preprocessor operator in c?
What is meant by high-order and low-order bytes?
a program that can input number of records and can view it again the record
Why is struct padding needed?