Write a c pgm for leap year
Answers were Sorted based on User's Feedback
Answer / s.gayathri
void main()
{
int a,y;
clrscr();
printf("enter the year");
scanf("%d",y);
a=y%4;
if(a==1);
printf("leep year");
| Is This Answer Correct ? | 8 Yes | 19 No |
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
main() { clrscr(); } clrscr();
Difference between constant pointer and pointer to a constant.
Given a valid 24 hour format time find the combination of the value and write a program ,do not hard the value and if any other inputs provided should work with the logic implemented Input: 11:30 Output: 13:10 Input: 18:25 Output: 21:58
What are the difference between a free-standing and a hosted environment?
Where are c variables stored in memory?
Describe advantages and disadvantages of the various stock sorting algorithms
What is #pragma directive?how it is used in the program? what is its advantages and disadvantages?
Can a pointer be volatile in c?
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); } what is the output?
3. Program to print all possible substrings. ex: String S St Str Stri Strin String t tr tri trin tring r