What are the Advantages of using macro
No Answer is Posted For this Question
Be the First to Post Answer
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.
What are runtime error?
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
How can I determine whether a machines byte order is big-endian or little-endian?
what are the various memory handling mechanisms in C ?
nic scientist exam
How do you define a string?
Can you define which header file to include at compile time?
how to add our own function in c library please give details.?
Is it acceptable to declare/define a variable in a c header?
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
what is the defrenece between structure and union