What is an example of enumeration?
Answer / antony edwin
when you list all of an author's works one by one.
| Is This Answer Correct ? | 0 Yes | 0 No |
Can you define which header file to include at compile time?
can u suggest me am in a confusion to choose whether to go to c programming or a software testing . am a graduate in B.sc(electronics).
Why is C called a middle-level language?
C,c++, Java is all are structural oriented or procedure oriented language..?
Explain threaded binary trees?
print pattern 1 1 33 33 555 555 77777777 555 555 33 33 1 1
What are local static variables?
#include<stdio.h> int f(int,int); int main() { printf("%d",f(20,1)); return 0; } int f(int n,int k) { if(n==0) return 0; else if(n%2)return f(n/2,2*k)+k; else return f(n/2,2*k)-k; } how this program is working and generating output as 9....?
How can I automatically locate a programs configuration files in the same directory as the executable?
How can you restore a redirected standard stream?
Software Interview Questions
How do we make a global variable accessible across files? Explain the extern keyword?