please give me some tips for the placement in the TCS.
No Answer is Posted For this Question
Be the First to Post Answer
What is linear search?
What is the difference function call by value & function call by reference?
#define d 10+10 main() { printf("%d",d*d); }
Explain how can I write functions that take a variable number of arguments?
What is a keyword?
What is function pointer c?
Why shouldn’t I start variable names with underscores?
which one low Priority in c? a)=,b)++,c)==,d)+
Explain the difference between null pointer and void pointer.
Can include files be nested?
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,
what is the difference between these initializations? Char a[]=”string”; Char *p=”literal”; Does *p++ increment p, or what it points to?