When should the const modifier be used?
What is the correct code to have following output in c using nested for loop?
what is the role you expect in software industry?
What is structure of c program?
What is the purpose of 'register' keyword?
Explain how can you determine the size of an allocated portion of memory?
# define prod(a,b)=a*b main() { int x=2; int y=3; printf("%d",prod(x+2,y-10)); } the output of the program is a.8 b.6 c.7 d.none
to find the closest pair
What is C++
Can a program have two main functions?
void main() { int a=1; while(a++<=1) while(a++<=2); }
What is pivot in c?
What are the parts of c program?