printfenter

  1. Gauravs90

    Array in c problem

    I'm using windows 7 64-bit and codeblocks mingw for compiling the following program #include<stdio.h> int main() { int i,len,a[100]; printf("enter the no. of elements\n"); scanf("%d",&len); printf("enter the integers\n"); for(i=0;i<len;i++) scanf("%d",a[i])...
  2. Gigacore

    Help need for a C program! SOS

    Hi guys i'm new to C programming. I've a small assignment program, Write a Program to accept 10 numbers using one dimensional array and display them. here how i tried, but haven't executed. int a[10],i,n; printf(Enter the number of elements"); scanf("%d", &n); printf("Enter...
Top Bottom