Thursday, 13 October 2016

HHW Q1. WAP to print your name , class and section .

#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
cout<<" Name ------ Tanuj Bhatt "<<"\n"<<" Class ----- 11 A";
getch();
}

No comments:

Post a Comment

Basic Implementation of Array as a Pointer

#include<iostream.h> #include<conio.h> void main() { clrscr();   int arr[5];   cout<<"Enter 5 nos. ";   f...