How do we open a binary file in Read/Write mode in C?
No Answer is Posted For this Question
Be the First to Post Answer
11. Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage
wap in c to accept a number display the total count of digit
Ow can I insert or delete a line (or record) in the middle of a file?
Explain c preprocessor?
Explain data types & how many data types supported by c?
why we shiuld use main keyword in C
What is typedf?
which type of question asked from c / c++ in interview.
Explain what is meant by 'bit masking'?
which is the best antivirus and how to update it
what is the output of below code int x=8,y; x>>=2; y=x; what is y value. NOTE:EXPLANATION IS COMPALSARY with binary bits
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...