can we store values and addresses in the same array? explain
Answer Posted / palani222samy
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 |
Post New Answer View All Answers
What is non linear data structure in c?
What is console in c language?
Is c pass by value or reference?
What is the purpose of 'register' keyword?
Can a program have two main functions?
What is the difference between formatted&unformatted i/o functions?
What is difference between structure and union?
What is the difference between ++a and a++?
Sir,please help me out with the code of this question. Write an interactive C program that will encode or decode multiple lines of text. Store the encoded text within a data file, so that it can be retrieved and decoded at any time. The program should include the following features: (a) Enter text from the keyboard, encode the text and store the encoded text in a data file. (b) Retrieve the encoded text and display it in its encoded form. (c) Retrieve the encoded text, decode it and then display the decoded text. (d) End the computation. Test the program using several lines of text of your choice.
What is data structure in c and its types?
What is the size of empty structure in c?
What are predefined functions in c?
Can an array be an Ivalue?
Why is it that not all header files are declared in every C program?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon