Explain the use of 'auto' keyword in c programming?
No Answer is Posted For this Question
Be the First to Post Answer
Write a routine that prints out a 2-D array in spiral order!
main() { int a; a=++100; printf("%d",a); getch(); }
a simple program in c language
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.
explain what is a newline escape sequence?
What is string length in c?
what is different between auto and local static? why should we use local static?
differentiate between const char *a; char *const a; and char const *a;
2 Answers College School Exams Tests, HCL, TCS,
Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"
Write a program to print distinct words in an input along with their count in input in decreasing order of their count..
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
Is main is user defined function?