What are the scope of static variables?
How can I avoid the abort, retry, fail messages?
What are the types of bitwise operator?
Why c language?
Why we not create function inside function.
What is an anonymous union and where to apply that ?
What is the difference between text and binary i/o?
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(“%d\n”,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
what is the difference between NULL('\0') and 0?
how to calculate the time complexity of a given algorithm? pls give exaples..mainly for the coplexities such as O(log n),O(n log n)...
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
C,c++, Java is all are structural oriented or procedure oriented language..?
What is the difference between scanf and fscanf?