Which driver is a pure java driver
No Answer is Posted For this Question
Be the First to Post Answer
How we can write a value to an address using macro..?
Write a program to generate the first n terms in the series --- 2,3,5,7,11,...,17
main() { int a=0; if(a=0) printf("Ramco Systems\n"); printf("India\n"); } output?
What is the difference between null pointer and the void pointer?
Write a c program to find, no of occurance of a given word in a file. The word is case sensitive.
write a c programs to do multiplication of two numbers with out using arithmatic operator ??????????
Is c compiled or interpreted?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
What is the general form of function in c?
i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }
Why cann't whole array can be passed to function as value.
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..