What is dangling pointer in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is extern variable in c with example?
write a program to display the numbers in the following format 4 4 3 3 3 3 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 2 2 2 2 2 3 3 3 4
what is the value of b if a=5; b=++a + ++a
31 Answers Infosys, TCS, Tech Mahindra,
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); }
Write a program in C to reverse a number by recursive function?
What is the difference between far and near ?
What is the use of c language in real life?
what is the difference between unix os and linux os
Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.
Explain what header files do I need in order to define the standard library functions I use?
What is the output of below code? main() { static in a=5; printf("%3d",a--); if(a) main(); }
in iso what are the common technological language?