Differentiate call by value and call by reference?
No Answer is Posted For this Question
Be the First to Post Answer
What is header file definition?
Is c a great language, or what?
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(); }
C language questions for civil engineering
print pattern 1 1 33 33 555 555 77777777 555 555 33 33 1 1
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.
Where static variables are stored in memory in c?
What is #line in c?
What is a good data structure to use for storing lines of text?
related to rdbms query .
i want to switch my career from quailty assurance engineering to development kindly guide me from which programming language its better for me to start plz refer some courses or certifications too i have an experience of 1.5 yrs in QA field.Kindly guide me
wat are the two methods for swapping two numbers without using temp variable??