1.)how to find d most repeated word in a string? string ="how do you do"?? output should be do
1 20923What is the output of the program
#include
int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }
1 5352
What is ambagious result in C? explain with an example.
Explain threaded binary trees?
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
any "C" function by default returns an a) int value b) float value c) char value d) a & b
How do I use void main?
what is the diffrenet bettwen HTTP and internet protocol
Write a program to check whether a number is prime or not using c?
What are the 32 keywords in c?
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.
Can you please explain the difference between malloc() and calloc() function?
What are types of functions?
What is the symbol indicated the c-preprocessor?
Can a variable be both static and volatile in c?