how to return 1000 variables from functio9n in c?plz give me
code also
Answers were Sorted based on User's Feedback
Answer / vignesh1988i
SEE /... we cant return 1000 variables at a time ... using
call by value...... only call by reference can do it....
tat is. usage of pointers...... since it will change
directly in the address itself.... that's a specality...
#include<stdio.h>
#include<conio.h>
void fun(int *,int *,int *.............1000 int's );
void main()
{
int a1,b1,c1,d1,.............a1000;
fun(&a1,&a2,...... &a1000);
for(int i=0;i<1000;i++)
printf("\n %d",a1);
getch();
}
void fun(int *a1,int *b2,.......... 1000 ptr declarations)
{
*a1=1;
*a2=2
.
.
.
.
.
.
100th varaible =1000;
}
| Is This Answer Correct ? | 9 Yes | 2 No |
Answer / 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 |
Answer / codee
extending the previous answer by passing array instead of
all variables
| Is This Answer Correct ? | 5 Yes | 2 No |
Answer / mishra@deepa
the first answer is quite long......
just pass an array(1000 elements) and return that.....
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / y hussain reddy
#include<stdio.h>
void main()
{
int *a;
a=(int*)malloc(200);
void f(int *);
f(a);
for(i=0;i<100;i++)
printf("%d ",a[i]);
}
void f(int *a)
{
int i;
for(i=0;i<100;i++)
a[i]=i;
}
| Is This Answer Correct ? | 0 Yes | 3 No |
Answer / vignesh1988i
you r right sir.... but he has asked 1000 VARIABLES.. so
only i done in this way.....
| Is This Answer Correct ? | 0 Yes | 4 No |
SRUCTURE PROGRAMMING
main() { int i; printf("%d",scanf"%d",&i))//if the input is 12 24 34 then wat will be the output }
What is sizeof int?
Can you write the algorithm for Queue?
0 Answers College School Exams Tests, TCS,
What is your stream meaning?
How to write a program for machine which is connected with server for that server automatically wants to catch the time for user of that machine?
p*=(++q)++*--p when p=q=1 while(q<=6)
What are c preprocessors?
Three major criteria of scheduling.
what is used instead of pointers in java than c?
What kind of sorting is this? SORT (k,n) 1.[Loop on I Index] repeat thru step2 for i=1,2,........n-1 2.[For each pass,get small value] min=i; repeat for j=i+1 to N do { if K[j]<k[min] min=j; } temp=K[i];K[i]=K[min];K[min]=temp; 3.[Sorted Values will be returned] A)Bubble Sort B)Quick Sort C)Selection Sort D)Merge Sort
A C E G H +B D F A I ------------ E F G H D