Difference between Function to pointer and pointer to function
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.
#include<stdio.h> #include<conio.h> void main() { char ch='\356'; printf("%d",ch); } o/p=-18 why?plz.explain
N O S I E R + A S T R A L ---------------- 7 2 5 6 1 3
A array contains dissimilar element how can we count, and A array contains dissimilar element how can we store in another array with out repetition.
What are the different types of C instructions?
#include<stdio.h> main() { int i=5; printf("%d",i*i-- - --i*i*i++ + ++i); } tell the answer with correct reason .specially reason is important nt answer ans by turbo c is -39
How can I do serial ("comm") port I/O?
What is a far pointer?What is the utility?
what is the difference between c and c++?
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
What is the best way to store flag values in a program?
Differentiate between calloc and malloc.