program to find out date after adding 31 days to a date in
the month of febraury also consider the leap year
No Answer is Posted For this Question
Be the First to Post Answer
What is the scope of static variables?
What is dynamic variable in c?
1) int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain the explain the output
What is difference between static and global variable in c?
to find the closest pair
what is stack , heap ,code segment,and data segment
What is the mean of function?
is c language is a object oreinted language?
What are the header files used in c language?
What are the differences between new and malloc in C?
a value that does not change during program execution a) variabe b) argument c) parameter d) none
main() { int ptr[] = {1,2,23,6,5,6}; printf("%d",&ptr[3]-&ptr[0]); }