Which is best book for data structures in c?
No Answer is Posted For this Question
Be the First to Post Answer
List the difference between a 'copy constructor' and a 'assignment operator' in C?
Is c is a procedural language?
What are structure types in C?
Is it acceptable to declare/define a variable in a c header?
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); }
What’s the special use of UNIONS?
Why do we write return 0 in c?
What is the best style for code layout in c?
what is a stack
HOW TO ANSWER IF ASKED " WHAT KIND OF A PERSON ARE YOU?" I NEED AN ANSWER THAT IMPRESS THE INTERVIEWER
What are pointers in C? Give an example where to illustrate their significance.
write C code to reverse a string such that if i/p is "abc defg hij klmno pqrs tuv wxyz" and the o/p should be "cba gfed jih onmlk srqp vut zyxw"