Answer Posted / praphulla
It automatically passes values to declared varibles.
ex: enum{red,green,blue}
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How can I discover how many arguments a function was actually called with?
What is this pointer in c plus plus?
Why pointers are used?
write a programming in c to find the sum of all elements in an array through function.
Why do we use header files in c?
using only #include
What is action and transformation in spark?
what are the 10 different models of writing an addition program in C language?
What is the purpose of ftell?
What is static identifier?
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
What are the benefits of c language?
the number of measuring units from a arbitrary starting point in a record area or control block to some other point a) branching b) recording pointer c) none d) offset
What is string concatenation in c?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }