Explain how can I avoid the abort, retry, fail messages?
No Answer is Posted For this Question
Be the First to Post Answer
program for reversing a selected line word by word when multiple lines are given without using strrev
What is substring in c?
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(); }
macros and function are related in what aspect? a)recursion b)varying no of arguments c)hypochecking d)type declaration
12 Answers HCL, Infosys, Microsoft,
Why does not c have an exponentiation operator?
What is the 'named constructor idiom'?
Write a main() program that calls this function at least 10 times. Try implementing this function in two different ways. First, use an external variable to store the count. Second, use a local variable. Which is more appropriate?
Is c language still used?
In c programming language, how many parameters can be passed to a function ?
matrix multiplication fails introspect the causes for its failure and write down the possible reasons for its failurein c language.
void main() { //char ch; unsigned char ch; clrscr(); for(ch =0;ch<= 127; ch++) printf(" %c= %d \t ", ch, ch); } output?
What are reserved words with a programming language?