List the difference between a "copy constructor" and a "assignment operator"?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to display the no of bit difference between any 2 given numbers eg: Num1 will 12->1100 Num2 will 7->0111 the difference in bits are 2.
a 'c' program to tell that the set of three coordinates lie on a same line
int *a[5] refers to
Write a c program to sort six numbers and find the largest one by using the ladder of if-else? plz do help me
#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }
What is floating point constants?
What are keywords in c with examples?
What are the complete rules for header file searching?
Hai why 'c' is the middle language
what will the following program do? void main() { int i; char a[]="String"; char *p="New Sring"; char *Temp; Temp=a; a=malloc(strlen(p) + 1); strcpy(a,p); //Line no:9// p = malloc(strlen(Temp) + 1); strcpy(p,Temp); printf("(%s, %s)",a,p); free(p); free(a); } //Line no 15// a) Swap contents of p & a and print:(New string, string) b) Generate compilation error in line number 8 c) Generate compilation error in line number 5 d) Generate compilation error in line number 7 e) Generate compilation error in line number 1
int x=sizeof(!5.856); What will value of variable x?
What is a constant and types of constants in c?