What is a keyword?
No Answer is Posted For this Question
Be the First to Post Answer
Why doesnt that code work?
What is difference between Structure and Unions?
read a number & print all its devisors using c-program?
Write a program to check armstrong number in c?
What is pointer to pointer in c with example?
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 are the three constants used in c?
fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }
what does static variable mean?
Please list all the unary and binary operators in C.
why we use pointer in c
will the program compile? int i; scanf(ā%dā,i); printf(ā%dā,i);