Answer Posted / sanjay
printf("\hai"");
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
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.
Write a factorial program using C.
how to introdu5ce my self in serco
What are logical errors and how does it differ from syntax errors?
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
What are the usage of pointer in c?
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
What are the __date__ and __time__ preprocessor commands?
What is the most efficient way to count the number of bits which are set in an integer?
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
Differentiate between functions getch() and getche().
What are the 32 keywords in c?
What is a const pointer?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
What is the difference between single charater constant and string constant?