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 |
I have an array of 100 elements. Each element contains some text. i want to: append a star character to the end of every fifth element remove every second character from every tenth element, and… add a line feed (ascii 10) after the 30th character of every array element whose length is greater than 30 characters.
Explain the binary height balanced tree?
Explain the differences between public, protected, private and internal.
What is a MAC Address?
what is C?
What is time complexity c?
what is the use of c program?
4 Answers Synergy, Web Synergies,
#include<stdio.h> void main() { int =1; printf("%d%d%d",a++,++a,++a); }
What is the difference between declaring a variable by constant keyword and #define ing that variable?
void main() { int i=5; printf("%d",i++ + ++i); }
SIR PLS TELL ME THE CODE IN C LANGUAGE TO PRINT THE FOLLOWING SERIES 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1 1 2 3 2 1 1 2 1 1
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above