Write a program in C to convert date displayed in
gregorian to julian date
No Answer is Posted For this Question
Be the First to Post Answer
How to delete a node from linked list w/o using collectons?
Explain the advantages of using macro in c language?
if a five digit number is input through the keyboard, write a program to calculate the sum of its digits. (hint:-use the modulus operator.'%')
How can I write functions that take a variable number of arguments?
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
hi send me sample aptitude papers of cts?
In the following code segment what will be the result of the function, value of x , value of y { unsigned int x=-1; int y; y = ~0; if(x == y) printf("same"); else printf("not same"); } a) same, MAXINT, -1 b) not same, MAXINT, -MAXINT c) same , MAXUNIT, -1 d) same, MAXUNIT, MAXUNIT e) not same, MAXINT, MAXUNIT
How can I recover the file name given an open stream or file descriptor?
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
Explain output of printf("Hello World"-'A'+'B'); ?
What is assignment operator?
What do the functions atoi(), itoa() and gcvt() do?