List the difference between a 'copy constructor' and a 'assignment operator' in C?
program to print upper & lower triangle of a matrix
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
class foo { public: static int func(const char*& p) const; }; This is illegal, why?
Write a program in C to convert date displayed in gregorian to julian date
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
What are qualifiers in c?
#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We Are Student “ Output: "We Are Student"
What is Your Name :)
code for bubble sort?
How does the C program handle segmentation faults?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL