#include<stdio.h>
void main()
{
int a [5];
for (i=0; i<=4; i++)
printf(ā%dā ,a[i]);
}
Answer Posted / purnima
it gives compile time error because here the var i is not
declared .aIn c a var must be declared before is usage
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What Is The Difference Between Null And Void Pointer?
Is c language still used?
write a sorting prgm to sort 50 nos and sum them and also remove all the occurrences of 15 and print it?
What are keywords in c with examples?
Can you apply link and association interchangeably?
Write a Program to find whether the given number or string is palindrome.
Differentiate call by value and call by reference?
Implement bit Array in C.
How to compare array with pointer in c?
How can you be sure that a program follows the ANSI C standard?
What is memory leak in c?
What is the difference between a free-standing and a hosted environment?
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 are nested functions in c?
Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.