Answer Posted / rathina priya
it is initialized to zero when the first object of
it's class is created
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is malloc and calloc?
What is the translation phases used in c language?
What is the difference between formatted&unformatted i/o functions?
What is a stream in c programming?
Difference between pass by reference and pass by value?
Explain union. What are its advantages?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
int i=10; printf("%d %d %d", i, i=20, i);
What is structure of c program?
What is the size of enum in c?
Where static variables are stored in c?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
Are pointers integer?
What is the correct code to have following output in c using nested for loop?
Is c weakly typed?