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
What are the string functions? List some string functions available in c.
Which one would you prefer - a macro or a function?
Dear Sir, we are required the bubble sorting programs Regs Prem
why do some people write if(0 == x) instead of if(x == 0)?
Define C in your own Language.
Describe for loop and write a c program to sum the series X + x2/2! + x3 /3! + …….. up to fifteen terms.
what is ANSI and ISO
read the folllowing code # define MAX 100 # define MIN 100 .... .... if(x>MAX) x=1; else if(x<MIN) x=-1; x=50; if the initial value of x=200,what is the vlaue after executing this code? a.200 b.1 c.-1 d.50
In a switch statement, explain what will happen if a break statement is omitted?
Is flag a keyword in c?
main() { enum _tag{ left=10, right, front=100, back}; printf("%d, %d, %d, %d", left, right, front, back); }
4. main() { int c=- -2; printf("c=%d",c); }