can we store values and addresses in the same array? explain
Answers were Sorted based on User's Feedback
Answer / sri
we can store values and address in same ,by using
datastructures concept
Is This Answer Correct ? | 15 Yes | 1 No |
Answer / rakesh
Yes, We can Store Value and Address in the Same Array using the LinkedList Concept of the Data & File Structure.
Is This Answer Correct ? | 12 Yes | 0 No |
Not because value we can store but address is we can't store
that is default address we can't change that value
Is This Answer Correct ? | 4 Yes | 3 No |
Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me
int i; i=2; i++; if(i=4) { printf(i=4); } else { printf(i=3); } output of the program ?
struct abc { unsigned int a; char b; float r; }; struct xyz { int u; struct abc tt; }ww; ww = (struct xyz*)malloc(sizeof(struct xyz)); will the memory be allocated for the inner structure also?
show how link list can be used to repersent the following polynomial i) 5x+2
what is differnence b/w macro & functions
write a addition of two no. program with out using printf,scanf,puts .
write a function for strtok()??
Find the O/p of the following struct node { char *name; int num; }; int main() { struct node s1={"Harry",1331}; struct node s2=s1; if(s1==s2) printf("Same"); else printf("Diff"); }
How arrays can be passed to a user defined function
What is meant by int fun const(int a, int b) { .... ... }
Write a program to remove the C comments(/* */) and C++ comments(//) from a file. The file should be declared in command line.
How is a two dimensional array passed to function when the order of matrix is not known at complie time?