how to return 1000 variables from functio9n in c?plz give me
code also
Answer Posted / codee
extending the previous answer by passing array instead of
all variables
| Is This Answer Correct ? | 5 Yes | 2 No |
Post New Answer View All Answers
What is the difference between constant pointer and constant variable?
Is struct oop?
Tell me when would you use a pointer to a function?
Write a program to print factorial of given number using recursion?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
p*=(++q)++*--p when p=q=1 while(q<=6)
Why cant I open a file by its explicit path?
Why is sizeof () an operator and not a function?
Can we access array using pointer in c language?
Explain what is the use of a semicolon (;) at the end of every program statement?
What is d'n in c?
What is difference between structure and union in c?
How will you delete a node in DLL?
WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.
How is = symbol different from == symbol in c programming?