the real constant in c can be expressed in which of the following forms
a) fractional form only
b) exponential form only
c) ascii form only
d) both a and b
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
what will be the output of this program........ main() { int a=2,b=4,c=6; printf("%d"); } why it gives the value of third variable.
write a C program : To find out the number of identical words in two files . the file name should be taken as command line argument .
code for selection sort?
Can static variables be declared in a header file?
Explain what is a pragma?
write a program wch produces its own source code aas its output?
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.
What is the condition that is applied with ?: Operator?
What is the use of linkage in c language?
how to find the sizof of any datatype using bit manipulations
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.