Answer Posted / naveen
from low to high =, ==, +, ++
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
Want to know how to write a C program that 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.
A banker has a seif with a cipher. Not to forget the cipher, he wants to write it coded as following: each digit to be replaced with the difference of 9 with the current digit. The banker chose a cipher. Decipher it knowing the cipher starts with a digit different than 9. I need to write a program that takes the cipher from the keyboard and prints the new cipher. I thought of the following: Take the input from the keyboard and put it into a string or an array. Go through the object with a for and for each digit other than the first, substract it from 9 and add it to another variable. Print the new variable. Theoretically I thought of it but I don't know much C. Could you give me any kind of hint, whether I am on the right track or not?
What is function prototype in c with example?
Explain how do you use a pointer to a function?
What does != Mean in c?
please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com
Is return a keyword in c?
how to write a c program to print list of fruits in alpabetical order?
Write a program which returns the first non repetitive character in the string?
Explain what are the different data types in c?
Why is structure important for a child?
What is the right type to use for boolean values in c? Is there a standard type?
I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
Which of these functions is safer to use : fgets(), gets()? Why?