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 use of operator ^ in C ? and how it works?
Is array name a pointer?
I have a function which accepts, and is supposed to initialize,a pointer, but the pointer in the caller remains unchanged.
how to connect oracle in C/C++.
A banker has a seif with a cipher. Not to forget the cipher, he wants to write it coded as following: each digit to be replaced with the difference of 9 with the current digit. The banker chose a cipher. Decipher it knowing the cipher starts with a digit different than 9. I need to write a program that takes the cipher from the keyboard and prints the new cipher. I thought of the following: Take the input from the keyboard and put it into a string or an array. Go through the object with a for and for each digit other than the first, substract it from 9 and add it to another variable. Print the new variable. Theoretically I thought of it but I don't know much C. Could you give me any kind of hint, whether I am on the right track or not?
while initialization of two dimensional arrays we can initialize like a[][2] but why not a[2][] is there any reason behind this?
WHAT IS INT?
What is the mean of function?
In a header file whether functions are declared or defined?
swap 2 numbers without using third variable?
will the program compile? int i; scanf(ā%dā,i); printf(ā%dā,i);
What's the difference between calloc() and malloc()?