Which driver is a pure java driver
No Answer is Posted For this Question
Be the First to Post Answer
write a program to arrange the contents of a 1D array in ascending order
How to convert a binary number to Hexa decimal number?? (Note:Do not convert it into binary and to Hexadecimal)
What is data structure in c language?
what is void pointer?
Why pointers are used in c?
Please write the area of a RIGHT ANGLED TRIANGLE.
why Language C is plateform dependent
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
When should a type cast not be used?
read the folllowing code # define MAX 100 # define MIN 100 .... .... if(x>MAX) x=1; else if(x<MIN) x=-1; x=50; if the initial value of x=200,what is the vlaue after executing this code? a.200 b.1 c.-1 d.50
What is the memory allocated by the following definition ? int (*x)[10];
wats the diference btwen constant pointer and pointer to a constant.pls give examples.