What is integer constants?
No Answer is Posted For this Question
Be the First to Post Answer
Why c++ is called c++ and not c+?
What is the difference between typeof(foo) and myFoo.GetType()?
Why & is used in scanf in c?
Derive the complexity expression for AVL tree?
how to find string length wihtout using c function?
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.
There are 3 baskets of fruits with worng lables,one basket has apple,another basket has orange,another has combination of apple and orange,what is the least way of interchange the lables.
15 Answers Cisco, Google, MBT,
Explain what is a static function?
What is d scanf?
What is a example of a variable?
What is #line?
given the piece of code int a[50]; int *pa; pa=a; to access the 6th element of the array which of the following is incorrect? a.*(a+5) b.a[5] c.pa[5] d.*(*pa + 5)