1.)how to find d most repeated word in a string? string ="how do you do"?? output should be do
1 20814What 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 5285
What is operator promotion?
Can we change the value of constant variable in c?
What is pointer & why it is used?
What is static and auto variables in c?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
What does int main () mean?
What does *p++ do?
What are the 3 types of structures?
what will be the output for the following main() { printf("hi" "hello"); }
Which control loop is recommended if you have to execute set of statements for fixed number of times?
What is the difference between union and anonymous union?
Why is sprintf unsafe?
Compare array data type to pointer data type
How can you pass an array to a function by value?
how many errors in c explain deply