Write a program to print distinct words in an input
along with their count in input in decreasing order of
their count
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
What is openmp in c?
Write a program in c to input a 5 digit number and print it in words.
What is the difference between union and structure in c?
what is difference between c and c++
what is recursion in C
main() { printf(5+"good morning"); printf("%c","abcdefgh"[4]); }the o/p is morning and e...how someone explain
What is fflush() function?
Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.
Find greatest number out of 10 number without using loop.
What does static variable mean in c?
void main(int argc,char *argv[],char *env[]) { int i; for(i=1;i<argc;i++) printf("%s",env[i]); }