In which mode we open the file for read,write and append
also in c ?
a)W
b)w+
c)r+
d)a
Answers were Sorted based on User's Feedback
Print the foll in C...eg when n=5 the o/p must b + + + + + + + + + + + + + + + + +
main() { int i = -3,j=2,k=0,m; m= ++i || ++j && ++k; printf("%d%d%d",i,j,k,m); }
What does %p mean c?
Do you have any idea how to compare array with pointer in c?
Give differences between - new and malloc() , delete and free() ?
What is a program flowchart and how does it help in writing a program?
What is the output of the following program #include<stdio.h> main() { int i=0; fork(); printf("%d",i++); fork(); printf("%d",i++); fork(); wait(); }
which one is better structure or union?(other than the space occupied )
How to throw some light on the b tree?
Define circular linked list.
What is the proper way of these job Tell me about there full work
what is difference between procedural language and functional language ?