A program to allow an input operand and operator from the operator and read on the display and output operand.
No Answer is Posted For this Question
Be the First to Post Answer
Can you assign a different address to an array tag?
Can we declare a function inside a function in c?
A array contains dissimilar element how can we count, and A array contains dissimilar element how can we store in another array with out repetition.
write a c/c++ programthat connects to a MYSQL server and checks if the INNoDB plug in is installed on it.If so your program should print the total number of disk writes by MYSQL.
printf("%d",(printf("Hello")); What it returns?
Can you explain the four storage classes in C?
I need a sort of an approximate strcmp routine?
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }
What is string in c language?
What is the explanation for cyclic nature of data types in c?
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.