1.)how to find d most repeated word in a string? string ="how do you do"?? output should be do
1 21013What 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 5424
Define and explain about ! Operator?
Do string constants represent numerical values?
What does sizeof return c?
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
what value is returned to operating system after program execution?
Tell us the use of fflush() function in c language?
What are the keywords in c?
What is the total generic pointer type?
What is the use of pointers in C?
Find MAXIMUM of three distinct integers using a single C statement
What will the preprocessor do for a program?
Why we write conio h in c?
while initialization of array why we use a[][2] why not a[2][]...?
What is a structural principle?
Are c and c++ the same?