How does placing some code lines between the comment symbol help in debugging the code?
No Answer is Posted For this Question
Be the First to Post Answer
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.
program for comparing 2 strings without strcmp()
What are integer variable, floating-point variable and character variable?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
how to go with this?
List some of the static data structures in C?
Write a C program to multiply tho numbers without using arithmetic operator (+, -, *, /).
What is the difference between fread buffer() and fwrite buffer()?
What are the Advantages of using macro
What is main void in c?
difference between object file and executable file
main() { int l=6; switch(l) { default:l=l+2; case 4:l=4; case 5:l++; break; } printf("%d",l); }