What are the types of variables in c?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to find the number of times that a given word(i.e. a short string) occurs in a sentence (i.e. a long string!). Read data from standard input. The first line is a single word, which is followed by general text on the second line. Read both up to a newline character, and insert a terminating null before processing. Typical output should be: The word is "the". The sentence is "the cat sat on the mat". The word occurs 2 times.
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
What does c mean in basketball?
why programming language C is still used in operating system's kernel??
how can we print hellow world programme without using semicolon
Is there any book to know about Basics of C Language?
What is a null pointer in c?
what is differnence b/w macro & functions
what is the defrenece between structure and union
What is atoi and atof in c?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
Why can't we initialise member variable of a strucutre