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....?????
Answer Posted / abhranil chatterjee
147mints.30sec.
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What does the file stdio.h contain?
how to find anagram without using string functions using only loops in c programming
Why doesn't C support function overloading?
please send me the code for multiplying sparse matrix using c
Can you please explain the difference between strcpy() and memcpy() function?
Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?
What is ctrl c called?
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
How many levels of pointers can you have?
What is function prototype in c with example?
What does c mean in standard form?
Can the size of an array be declared at runtime?
What is the concatenation operator?
Differentiate between ordinary variable and pointer in c.
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }