Write programs for String Reversal & Palindrome check
No Answer is Posted For this Question
Be the First to Post Answer
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
Write a program in C to convert date displayed in gregorian to julian date
how to make a scientific calculater ?
Write a Program to print this triangle: * ** * **** * ****** * ******** * ********** use two nested loops.
12 Answers MIT, TCS,
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
What are variables and it what way is it different from constants?
What is static function in c?
What is the easiest sorting method to use?
Explain about the constants which help in debugging?
What is the scope of static variables?
Which of the following is not a valid declaration for main ()? 1) int main() 2) int main(int argc, char *argv[]) 3) They both work