What is wrong with this statement? Myname = 'robin';
No Answer is Posted For this Question
Be the First to Post Answer
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?
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,
how to find binary of number?
What are the advantages of external class?
what is the difference between auto and static keywords
1 Answers cDot, College School Exams Tests, TCS,
what is the output of printf("%d",(scanf("%d",10));
What is meant by type specifiers?
How do I round numbers?
Can a pointer be null?
What does c mean before a date?
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 is #include cctype?