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
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); }
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
What is #include cctype?
#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }
application attempts to perform an operation?
m=++i&&++j(||)k++ printf("%d"i,j,k,m)
Why c is known as a mother language?
write a programe returns the number of times the character appears in the string
what is the output for this question: main() { int i=1; printf("%d%d%d",i,i++,++i); }
What is the size of a union variable?
List some applications of c programming language?
pascal triangle program