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
#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.
What is the Difference between Macro and ordinary definition?
3 Answers Bosch, Cognizant, College School Exams Tests, Motorola,
Describe how arrays can be passed to a user defined function
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
How to convert a binary number to Hexa decimal number?? (Note:Do not convert it into binary and to Hexadecimal)
What is New modifiers?
wat s the meaning of (int *)p +4;
Convert the following expression to postfix and prefix (A+B) * (D-C)
When should the const modifier be used?
what is c++ programming?
what is pointer ?
10 Answers Kernex Micro Systems,
Can we declare function inside main?