C++ program to print odd numbers using loop Code Example
c++ program to print odd numbers using loop
/*Q:Use Loops to print odd ids of employees from 1 to
19.*/
#include
using namespace std;
int main()
{
int a;
for(a=1;a<=19;a+=2)
{
cout<<"Employee Id's= "<