Are local variables initialized to zero by default in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is meant by preprocessor in c?
what is the purpose of the following code, and is there any problem with the code? void fn(long* p1, long* p2) { register int x = *p1; register int y = *p2; x ^= y; y ^= x; x ^= y; *p1 = x; *p2 = y; }
What is console in c language?
Magic square
Is calloc better than malloc?
What is the difference between malloc() and calloc()?
What is extern keyword in c?
What is the difference between struct and union in C?
Difference between MAC vs. IP Addressing
In a switch statement, explain what will happen if a break statement is omitted?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
The C language terminator is a.semicolon b.colon c.period d.exclamation mark