Explain that why C is procedural?
No Answer is Posted For this Question
Be the First to Post Answer
Why is c so powerful?
write the program for prime numbers?
73 Answers Accenture, Aptech, Infosys, 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 the use of bit field?
Why header file is used in c?
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm
By using C language input a date into it and if it is right?
how to find binary of number?
How can I read a binary data file properly?
how can i include my own .h file EX:- alex.h like #include<alex.h>, rather than #include"alex.h"
What are the concepts introduced in OOPs?
Where can I get an ansi-compatible lint?