how to write a c program to print list of fruits in
alpabetical order?
No Answer is Posted For this Question
Be the First to Post Answer
What is define directive?
a 'c' program to tell that the set of three coordinates lie on a same line
Is there any demerits of using pointer?
fn f(x) { if(x<=0) return; else f(x-1)+x; }
What is #define in c?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
How many types of linked lists what are they? How many types of data structures?
18 Answers BSNL, Pivotal Software,
How macro execution is faster than function ?
When should a far pointer be used?
difference between ordinary variable and pointer in C?
f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=?
Write a program which take a integer from user and tell whether the given variable is squar of some number or not. eg: is this number is 1,4,9,16... or not