#include<stdio.h>
#include<conio.h>int main()
{
int i, arr[7]={1,2,3,4,5,6,7};
for(i=0; i<10; i++)
{
printf("\n %d", arr[i]);
}
}
#include<stdio.h>
#include<conio.h>int main()
{
int i, arr[7]={1,2,3,4,5,6,7};
for(i=0; i<10; i++)
{
printf("\n %d", arr[i]);
}
}
Program to compare Strings in C++ (strcmp function in C++)
All C++ Functions List Alphabatically
Find the largest number among 3 numbers in C++