pgm to find any error in linklist(in single linklist check
whether any node points any of previous nodes instead of
next node)
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
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 maximum number of concurrent threads that the InnoDB plug-in can create.
How can I convert a number to a string?
Can U write a C-program to print the size of a data type without using the sizeof() operator? Explain how it works inside ?
What is new line escape sequence?
#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } what are the outputs?
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
What are the types of variables in c?
What is the use of gets and puts?
If you know then define #pragma?