How can you find out how much memory is available?
No Answer is Posted For this Question
Be the First to Post Answer
int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
What is a global variable in c?
develop algorithms to add polynomials (i) in one variable
What is the difference between functions getch() and getche()?
Write a client and server program in C language using UDP, where client program interact with the Server as given below: i) The client begins by sending a request to send a string of 8 characters or series of 7 numbers, the server sends back a characters or numbers as per the request of the client. ii) In case of series of 7 numbers: The client sends a multiplication of numbers, to the server. iii) In case of a string of 8 characters: The client sends a reverse order of string to the server.. iv) Server will send an acknowledgment to the client after receiving the correct answer
get any number as input except 1 and the output will be 1.without using operators,expressions,array,structure.don't print 1 in printf statement
wat is the difference between array and pointer?
What is structure padding ?
program to print upper & lower triangle of a matrix
pierrot's divisor program using c or c++ code
write a c program to print the values in words eg:- 143 written it has (one hundred and forty three)& 104, 114 are also written words
5 Answers Captronic, DELL, Google, IBM, Mithi, RCC, Wipro,
Why do we use int main instead of void main in c?