what are the stoge class in C and tel the scope and life time
of it?
Answer Posted / aruna.r
1.automatic
2.extern
3.static
4.register
| Is This Answer Correct ? | 11 Yes | 0 No |
Post New Answer View All Answers
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
What does != Mean in c?
Is c is a low level language?
How can I rethow can I return a sequence of random numbers which dont repeat at all?
What is a const pointer?
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
Which function in C can be used to append a string to another string?
Differentiate between #include<...> and #include '...'
Is null valid for pointers to functions?
What is a dynamic array in c?
How many levels of indirection in pointers can you have in a single declaration?
What are the types of unary operators?
Explain 'far' and 'near' pointers in c.
Is stack a keyword in c?