What is the purpose of ftell?
No Answer is Posted For this Question
Be the First to Post Answer
Write a c program to find, no of occurance of a given word in a file. The word is case sensitive.
given the piece of code int a[50]; int *pa; pa=a; to access the 6th element of the array which of the following is incorrect? a.*(a+5) b.a[5] c.pa[5] d.*(*pa + 5)
can we access one file to one directory?
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.
0 Answers Lovely Professional University,
Which of the following about the C comments is incorrect ? a.commentscan go over multiple lines b.comments can start any where in the line c.a line can contain comments with out any language statements d.comments can occur within comments
write a program to concatenation the string using switch case?
Describe newline escape sequence with a sample program?
What is a floating point in c?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
What is || operator and how does it function in a program?
Difference between goto, long jmp() and setjmp()?
what is the difference between i++ and ++i?