how to return 1000 variables from functio9n in c?plz give me
code also
Answer Posted / ramachandran
#include<stdio.h>
int fun(int *a)
{
return ++(*a);
}
int main()
{
int a=0,i,d;
for(i=0;i<100;i++)
{
d=fun(&a);
printf("\n%d",d);
}
getch();
}
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
What is d scanf?
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
develop algorithms to add polynomials (i) in one variable
How can I access an I o board directly?
What are linker error?
How arrays can be passed to a user defined function
what are # pragma staments?
What is file in c language?
Explain enumerated types in c language?
Why doesnt long int work?
How can I manipulate individual bits?
What is static memory allocation? Explain
What is c variable?
Difference between constant pointer and pointer to a constant.