What is the difference between a function and a method in c?
No Answer is Posted For this Question
Be the First to Post Answer
How do you view the path?
what are bit fields? What is the use of bit fields in a structure declaration?
0 Answers Flextronics, TISL, Virtusa,
how to print this sereis 2 4 3 6 5..........?
how to make program without <> in library.
Explain that why C is procedural?
What is static volatile in c?
What is the difference between malloc() and realloc()?
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.
How does #define work?
what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }
what is the difference between const volatile int i & volatile const int j;
Explain how do you list files in a directory?