write a c program in such a way that if we enter the today
date the output should be next day's date.
No Answer is Posted For this Question
Be the First to Post Answer
What does the characters “r” and “w” mean when writing programs that will make use of files?
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
Explain pointers in c programming?
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
I have a function which accepts a pointer to an int. How can I pass a constant like 5 to it?
what is the output of the following program? main() { int i=-1,j=-1,k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d %d %d %d %d",i,j,k,l,m); }
Evaluate the following: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); 1) 10 2) 11 3) 1
what do u mean by Direct access files? then can u explain about Direct Access Files?
What is difference between static and global variable in c?
What are types of structure?
How are structure passing and returning implemented?
how would a 4*3 array A[4][3] stored in Row Major Order?