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
What is hashing in c language?
What are the 4 data types?
What are the two forms of #include directive?
Explain how do you search data in a data file using random access method?
What is the general form of #line preprocessor?
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
Write a program in C to convert date displayed in gregorian to julian date
Write a program to swap two numbers without using a temporary variable?
What are logical errors and how does it differ from syntax errors?
what is meant by c
#include<stdio.h> main() { char *p1; char *p2; p1=(char *) malloc(25); p2=(char *) malloc(25); strcpy(p1,"Ramco"); strcpy(p2,"Systems"); strcat(p1,p2); printf("%s",p1); } Tell me the output?
WHAT IS PRE POSSESSORS?