What are the back slash character constants or escape sequence charactersavailable in c?
No Answer is Posted For this Question
Be the First to Post Answer
Explain how can I read and write comma-delimited text?
Does c have enums?
Can the size of an array be declared at runtime?
how to determine the complexity of an algorithm as log(n)
What is optimization in c?
What is the use of function in c?
the maximum width of a c variable name can be a) 6 characters b) 8 characters c) 10 characters d) 20 characters
Can we use any name in place of argv and argc as command line arguments?
void main() { char far *farther,*farthest; printf("%d..%d",sizeof(farther),sizeof(farthest)); }
How many types of arrays are there in c?
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); } what is the output?
What is memory leak in c?