Give basis knowledge of web designing ...
No Answer is Posted For this Question
Be the First to Post Answer
What is the purpose of 'register' keyword?
How to convert a binary number to Hexa decimal number?? (Note:Do not convert it into binary and to Hexadecimal)
where can function pointers be used?
Why is c called a mid-level programming language?
What is the use of static variable in c?
Write a program in c using only loops to print * * * * * *******
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
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,
array of pointer pointer to array pointer to pointer
I heard that you have to include stdio.h before calling printf. Why?
Find the largest number from the given 2 numbers without using any loops and the conditional operator.
how to swap 4 number without using temporary number?