how to return 1000 variables from functio9n in c?plz give me
code also
Answer Posted / 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 |
Post New Answer View All Answers
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
What is ctrl c called?
What are the ways to a null pointer can use in c programming language?
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
What is a macro?
What is the condition that is applied with ?: Operator?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
How does pointer work in c?
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational
What are multibyte characters?
Compare and contrast compilers from interpreters.
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
What is the difference between malloc() and calloc()?
Is there a built-in function in C that can be used for sorting data?
What type of function is main ()?