What are the functions to open and close file in c language?
No Answer is Posted For this Question
Be the First to Post Answer
Which of the following about automatic variables within a function is correct ? a.its type must be declared before using the variable b.they are local c.they are not initialised to zero d.they are global.
What does 1f stand for?
void main() { int a[]={1,2,3,4,5},i; for(i=0;i<5;i++) printf("%d",a++); getch(); }
What is an lvalue?
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
Is fortran faster than c?
why Language C is plateform dependent
int a=1,b=2,c=3; printf("%d,%d",a,b,c); What is the output?
Explain what are reserved words?
Explain what does the function toupper() do?
Table of Sudoku n*n
main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }