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 |
Write a programm such that if user enter 11.25 it roundup to 11 but if user enter 11.51 upto 11.99 it will round up to 12 i.e.;convert the floting point value into integer format as explain above..
What is the difference between #include <header file> and #include “header file”?
Write a c program to Find the name that you entered is male name or female name? Such as Sunjay is name of male and Payal is name of female
What is the size of array float a(10)?
to find out the reverse digit of a given number
6 Answers Infosys, Microsoft, TCS, Wipro,
int i; i=2; i++; if(i=4) { printf(i=4); } else { printf(i=3); } output of the program ?
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
15.what is the disadvantage of using macros? 16.what is the self-referential structure? 17.can a union be self-referenced? 18.What is a pointer? 19.What is the Lvalue and Rvalue? 20.what is the difference between these initializations? 21.Char a[]=”string”; 22.Char *p=”literal”; 23.Does *p++ increment p, or what it points to?
Can we add pointers together?
What is malloc return c?
Differentiate between the expression “++a” and “a++”?
What is meant by high-order and low-order bytes?