What are the application of c?
No Answer is Posted For this Question
Be the First to Post Answer
Why preprocessor should come before source code?
C program to find all possible outcomes of a dice?
What will be the output of following program #include main() { int x,y = 10; x = y * NULL; printf("%d",x); }
i want to have a program to read a string and print the frequency of each character and it should work in turbo c
What is dynamic memory allocation?
What are the functions to open and close the file in c language?
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.
where do we use structure pointer?
write a program to find the given number is prime or not
2 Answers Accenture, Vasutech,
Why do we write return 0 in c?
write a program that accepts 3 numbers from the user. dispaly the values in a descending order.
Why is the code below functioning. According to me it MUST NOT.