#include<stdio.h>
void main()
{
int a [5];
for (i=0; i<=4; i++)
printf(ā%dā ,a[i]);
}
Answer Posted / sameer mohammed
It shows us garbage values as because the integer type
array is declared but it is not defined.
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
What are structures and unions? State differencves between them.
Differentiate between full, complete & perfect binary trees.
What are multibyte characters?
5 Write an Algorithm to find the maximum and minimum items in a set of ānā element.
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
Write a program to check palindrome number in c programming?
Explain what will the preprocessor do for a program?
Explain the difference between structs and unions in c?
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
What is wrong with this program statement?
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
What is the condition that is applied with ?: Operator?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
What is the purpose of main( ) in c language?
How do you convert strings to numbers in C?