how many argument we can pas in in a function

Answer Posted / arunthathi

it's 3404. i had worked upto this level.

Is This Answer Correct ?    1 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

string reverse using recursion

1817


With the help of using classes, write a program to add two numbers.

622


What math functions are available for integers? For floating point?

627


Who developed c language and when?

589


How does pointer work in c?

623






Write a program of prime number using recursion.

623


Explain what is the benefit of using const for declaring constants?

618


When is a null pointer used?

644


What is the difference between array_name and &array_name?

781


How can this be legal c?

656


typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?

1078


What is the meaning of typedef struct in c?

600


p*=(++q)++*--p when p=q=1 while(q<=6)

1271


write a programming in c to find the sum of all elements in an array through function.

1710


#include #include struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

5216