Answer Posted / civa
Compiler Error "error: syntax error before ')' token"
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is indirection in c?
Are there namespaces in c?
Explain enumerated types in c language?
Explain what is wrong in this statement?
Explain what is wrong with this program statement? Void = 10;
How to find a missed value, if you want to store 100 values in a 99 sized array?
What is #define size in c?
What is the ANSI C Standard?
What is a macro?
what are the advantages of a macro over a function?
Where are local variables stored in c?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
What is the benefit of using const for declaring constants?
Are the expressions * ptr ++ and ++ * ptr same?
Explain what is dynamic data structure?