main()
{
enum _tag{ left=10, right, front=100, back};
printf("%d, %d, %d, %d", left, right, front, back);
}
Tell me with an example the self-referential structure?
Explain how are portions of a program disabled in demo versions?
second highest number in a given set of numbers
What are the advantages of c preprocessor?
Which of the following sorts is quickest when sorting the following set: 1 2 3 5 4 1) Quick Sort 2) Bubble Sort 3) Merge Sort
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?
What is a file descriptor in c?
What is static and volatile in c?
what will be the output: main(){char ch;int a=10;printf("%d",ch);}
36 Answers Accenture, TCS, Wipro,
Why static is used in c?
Which header file is essential for using strcmp function?
What are the 4 types of functions?