How can you increase the allowable number of simultaneously open files?
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> main() {int i=1;j=1; for(;;) {if(i>5) break; else j+=1; printf("\n%d",j) i+=j; } }
What are the features of the c language?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
What is the symbol indicated the c-preprocessor?
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
How do I determine whether a character is numeric, alphabetic, and so on?
What is the difference between abs() and fabs() functions?
what is c programming?
What are the advantages of c language?
Is there something we can do in C but not in C++? Declare variable names that are keywords in C++ but not C.
what is the difference between arrays and linked list
26 Answers MAHINDRA, Tech Mahindra, Wipro,
what will be the output of this program? void main() { int a[]={5,10,15}; int i=0,num; num=a[++i] + ++i +(++i); printf("%d",num); }