What is spaghetti programming?
No Answer is Posted For this Question
Be the First to Post Answer
What is your stream meaning?
when will be evaluated as true/ if(x==x==x) a) x=1; b) x=0; c) x=-1; d) none
writw a program to insert an element in the begning of a doubly linked list
What are the different types of pointers used in c language?
What are static functions?
What are dangling pointers?
x=2,y=6,z=6 x=y==z; printf(%d",x)
13 Answers Bharat, Cisco, HCL, TCS,
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 is structure data type in c?
Explain how can you restore a redirected standard stream?
write a program to search for an element in a given array. If the array was found then display its position otherwise display appropriate message in c language
What are the advantages of union?