Copy Constructor:- It is of the form classname (classname &) and used for the initialization of an object form another
Continue readingAuthor:
What is difference between Call by Value and Call by reference?
Call by Value: – In this method the values of the actual parameters (appearing in the function call) are copied
Continue readingHow can you find Index Fragmentation in a SQL Server Database?
Through Below query you are able to find out index fragmentation in SQL Server databases:- select avg_fragmentation_in_percent,OBJECT_Name(object_id), * from
Continue readingHow can you track DDL Changes in SQL Server Databases?
Recently i have faced one scenario where one of our developers had changed one SP because of that application has
Continue readingHow to attach database without LDF file in SQL Server?
There can be a situation where you don’t have full database backup and you have corrupted your ldf file due to power
Continue readingHow to recover query files in SQL Server Management Studio after crashes?
If SQL Server Management Studio (SSMS) crashes for any reason at any time, then there is a chance that you
Continue readingWrite A program in C to copy one string into another String ?
/ ** Write A program in C to copy one string into another String **/ void stringCpy(char* s1,char* s2); int
Continue readingC Program to Check Armstrong Number
/* write A C Program to Find Armstrong Number */ #include <stdio.h> int main() { int num, sum=0, rem=0,temp; printf(“Enter
Continue readingprogram to check number is Palindrome or not in C?
#include <stdio.h> int main() { int num, rev=0, rem=0,temp; printf(“Enter an integer number: “); scanf(“%d”, &num); temp=num; while(temp!=0) { rem=temp%10;
Continue readingWrite a program to swap two numbers without using third variable?
#include <stdio.h> int main() { int i,j,k; printf(” Enter value of i “); scanf(“%d”,&i); printf(” Enter value of j ?
Continue reading