Explain how do you sort filenames in a directory?
No Answer is Posted For this Question
Be the First to Post Answer
What is the advantage of a random access file?
Is anything faster than c?
f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=?
which one is highest Priority in c? a)=,b)+,c)++,d)==
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
void main() { int a=1; printf("%d %d %d",a,++a,a++); } the output is supposed to be 1 2 2....but it is 3 3 1 this is due to calling conventions of C. if anyone can explain me how it happens?
What is the difference between malloc() and calloc()?
What is the difference between a string and an array?
What type of function is main ()?
list the no of files created when c source file is compiled
what value is returned to operating system after program execution?
what is the output for this question: main() { int i=1; printf("%d%d%d",i,i++,++i); }