How can I read data from data files with particular formats?
No Answer is Posted For this Question
Be the First to Post Answer
Why cann't whole array can be passed to function as value.
write a program to convert a expression in polish notation (postfix) to inline (normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix
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.
What are shell structures used for?
main() { int i=400,j=300; printf("%d..%d"); }
Where are c variables stored in memory?
char ch=10;printf("%d",ch);what is the output
How does selection sort work in c?
wat is the output #define VOLEDEMORT _who_must_not_be_named int main() { printf("VOLEDEMORT"); }
Explain what is the general form of a c program?
What is a lookup table in c?
Write a program to print factorial of given number without using recursion?