Can we declare function inside main?
No Answer is Posted For this Question
Be the First to Post Answer
What happens if header file is included twice?
What is an operator?
Explain what does the function toupper() do?
What do you mean by command line argument?
What is meant by initialization and how we initialize a variable?
How can I access memory located at a certain address?
What is the difference between arrays and pointers?
write a program that will accept two integers and will implement division without using the division operator if the second value is an odd number and will implement multiplication without using multiplication operator if the second value is an even number.
please give me answer with details #include<stdio.h> main() { int i=1; i=(++i)*(++i)*(++i); printf("%d",i); getch(); }
What is c language used for?
what is the difference between c and c++?
Calculate 1*2*3*____*n using recursive function??