What language is lisp written in?
No Answer is Posted For this Question
Be the First to Post Answer
write a function that accepts an integer/char array and an search item.If the search item is there in the array return position of array and value else return -1.without using other array,without sorting,not to use more than one loop?
main() { printf(5+"Vidyarthi Computers"); }
What is string length in c?
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?
How to print all the 26 alphabets in this order in C. AbCdEfGh..... it should print dynamically from a to z and do not print this using pgm like this print("Ab......"); Use loops or anything to print all alphabets
Tell us something about keyword 'auto'.
write a program for size of a data type without using sizeof() operator?
22 Answers HCL, IBM,
struct abc { unsigned int a; char b; float r; }; struct xyz { int u; struct abc tt; }ww; ww = (struct xyz*)malloc(sizeof(struct xyz)); will the memory be allocated for the inner structure also?
Which driver is a pure java driver
why do some people write if(0 == x) instead of if(x == 0)?
What are valid signatures for the Main function?
Differentiate abs() function from fabs() function.