What is the value of a[3] if integer a[] = {5,4,3,2,1}?
No Answer is Posted For this Question
Be the First to Post Answer
what is a NULL pointer?
write a program to copy a string without using a string?
using for loop sum 2 number of any 4 digit number in c language
application of static variables in real time
Which is better between malloc and calloc?
Convert the following expression to postfix and prefix X $ Y Z - M + N + P / Q / (R + S)
What is volatile variable in c with example?
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); }
Explain what does the function toupper() do?
What will the preprocessor do for a program?
Define the scope of static variables.
4) Write a program that takes a 5 digit number and calculates 2 power that number and prints it.