Explain what is the best way to comment out a section of code that contains comments?
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.
Explain what is wrong with this program statement? Void = 10;
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
What is #line?
Write a C program in Fibonacci series.
what are the facialities provided by you after the selection of the student.
Write a C/C++ program that connects to a MySQL server and checks intrusion attempts every 5 minutes. If an intrusion attempt is detected beep the internal speaker to alert the administrator. A high number of aborted connects to MySQL at a point in time may be used as a basis of an intrusion.
2 Answers Drona Solutions, Infosys, Vodafone, Webyog,
which type of question asked from c / c++ in interview.
please explain every phase in the "SDLC" in the dotnet.
what r the cpu registers r ther?
how to find sum of digits in C?