Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
No Answer is Posted For this Question
Be the First to Post Answer
what is the difference between c and java?
for(i=0;i=printf("Hello");i++); printf("Hello"); how many times how will be printed?????????
What are Macros? What are its advantages and disadvantages?
1. main() { printf("%d",printf("HelloSoft")); } Output?
what is the benefit of c30
who is the father of C Language?
20 Answers CTS, UST,
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
if array a conatins 'n' elements and array b conatins 'n-1' elements.array b has all element which are present in array a but one element is missing in array b. find that element.
18 Answers Parexel, Ram Infotech, Zycus Infotech,
Efficient data structure for store/search list of 1000 records a)array b)double linked list c)circular queue d)hash table
compute the nth mumber in the fibonacci sequence?
10 Answers Canon, HPL, Satyam, TCS,
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.