Can you apply link and association interchangeably?
No Answer is Posted For this Question
Be the First to Post Answer
Do you know the difference between exit() and _exit() function in c?
How a string is stored in c?
what is use of loop?
What is the benefit of using #define to declare a constant?
Explain enumerated types.
Finding first/last occurrence of a character in a string without using strchr( ) /strrchr( ) function.
What should malloc(0) do?
write a program to rearrange the array such way that all even elements should come first and next come odd
I heard that you have to include stdio.h before calling printf. Why?
Find the O/p of the following 1) #include int main() { char c='1'; int j=atoi(c); }
Here is a good puzzle: how do you write a program which produces its own source code as output?
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.