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.
No Answer is Posted For this Question
Be the First to Post Answer
Tell me with an example the self-referential structure?
write a program to swap Two numbers without using temp variable.
75 Answers EMC, Focus, GreyB, HCL, Hitech, HP, Huawei, Infosys, Mannar Company, Microsoft, Miles Software, Odessa Technologies, Satyam, TCS, Wipro,
What are operators in c?
Is fortran still used today?
Process by which one bit pattern in to another by bit wise operation is?
Find occurence of a character in a sting.
what is the most appropriate way to write a multi-statement macro?
int main() { int i=1; switch(i) { case '1': printf("hello"); break; case 1: printf("Hi"); break; case 49: printf("Good Morning"); break; } return 0; }
develop algorithms to add polynomials (i) in one variable
What does 4d mean in c?
What does the error 'Null Pointer Assignment' mean and what causes this error?
what is the output of following question? void main() { int i=0,a[3]; a[i]=i++; printf("%d",a[i] }