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

Post New Answer

More C Interview Questions

#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?

2 Answers  


What is structure padding in c?

0 Answers  


Write a program on swapping (100, 50)

0 Answers   BPL,


can anyone proide me reading material on svit00ef27@yahoo.com please thanx in advance

1 Answers   IBM,


I need to take a sentence from input and sort the words alphabetically using the C programming language. Note: This is C not C++. qsort and strtok not allowed

4 Answers   Aspire,






How can I find out how much memory is available?

1 Answers   Persistent,


where does it flourished?

0 Answers   Microsoft,


what is data structure

5 Answers   Maveric, TCS,


# define x=1+4; main() { int x; printf("%d%d",x/2,x/4); }

5 Answers  


What is the maximum length of an identifier?

0 Answers  


What is string constants?

0 Answers  


Explain what are run-time errors?

0 Answers  


Categories