What is #include cctype?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program that will read the input of any number of digits n in a row of shafh showing the breakdown of the printing and printing figures by the recursive function.
What is the scope of static variables in c language?
What is the scope of an external variable in c?
Explain is it valid to address one element beyond the end of an array?
main() {int i=5; // line 1 i=(++i)/(i++); // line 2 printf("%d",i); // line 3 } output is 2 but if we replace line 2 and line 3 by printf("%d",i=(++i)/(i++)); then output is 1. Why?
What is that continue statement??
wap in c to accept n number display the highest and lowest value
What are the commands should be given before weiting C Program i.e, Cd.. like
4 Answers IBM, Infonet, Satyam, Tech Mahindra,
In c programming language, how many parameters can be passed to a function ?
What is the difference between c &c++?
how many argument we can pas in in a function
Why does everyone say not to use scanf? What should I use instead?