What is infinite loop?
No Answer is Posted For this Question
Be the First to Post Answer
What are the two types of functions in c?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.
what is the difference between unix os and linux os
What is indirection in c?
Implement bit Array in C.
What is wrong with this code such that it doesnt produce the input reversed? #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { char Space = ' '; char LineOfText; float count; LineOfText = getchar(); while ((LineOfText = getchar()) != '/n'); { count = strlen(LineOfText) - 1; while (count >= 0) { putchar(LineOfText[count]); count--; } } getchar(); return 0; }
What is meant by initialization and how we initialize a variable?
which operator having highest precedence? a.)+ b.)++ c.)= d.)%
Give differences between - new and malloc() , delete and free() ?
What is the difference between class and object in c?
what is the difference between %d and %*d in c languaga?