Fifty minutes ago if it was four times as many mints past 3
o clock. how many minutes is it to six o'clock n how....?????
Answers were Sorted based on User's Feedback
Answer / r0h_n
4 times of 50mins.=50*4=200mins.=3hr.20mins.
3o'clock past 200min.=3o'clock+3hr.20min.=6hr.20mins.
50mins. ago it was 6:20,then now d time is=6:20+50mins.=7:10
7hr 10mins.-6hr=1hr 10min.=70 mins. past 6 o'clock
Is This Answer Correct ? | 3 Yes | 3 No |
void main() { static int i = 5; if(--i) { main(); printf("%d ",i); } } what would be output of the above program and justify your answer? }
5 Answers C DAC, CDAC, Infosys, Wipro,
What is C language ?
Write a program to print “hello world” without using semicolon?
Why do we use int main?
Can I pass constant values to functions which accept structure arguments?
What is a substring in c?
#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }
What is structure padding ?
how do u find out the number of 1's in the binary representation of a decimal number without converting it into binary(i mean without dividing by 2 and finding out the remainder)? three lines of c code s there it seems...can anyone help
#include<stdio.h> int f(int,int); int main() { printf("%d",f(20,1)); return 0; } int f(int n,int k) { if(n==0) return 0; else if(n%2)return f(n/2,2*k)+k; else return f(n/2,2*k)-k; } how this program is working and generating output as 9....?
write a program for even numbers?
Write a program to print distinct words in an input along with their count in input in decreasing order of their count