- 24
What are all the three words to decribe class?
I know 2 names of object which is attribute and Behavior
14 ответов
+ 45
attribute, identity, behaviour
+ 21
^_^ (School) Class : noisy, small, annoying……… ~_~
+ 5
sowmya thanks alot
+ 5
Identity, Attribute, Behavior
+ 4
methods?
+ 3
the three are attribute, identity, behaviour
+ 2
thanks sowmya
+ 1
attribute, identity and behaviour
+ 1
identity
+ 1
#include <stdio.h>
int main()
{
char ch;
FILE *fpw;
fpw = fopen("C:\\newfile.txt","w");
if(fpw == NULL)
{
printf("Error");
exit(1);
}
printf("Enter any character: ");
scanf("%c",&ch);
/* You can also use fputc(ch, fpw);*/
fprintf(fpw,"%c",ch);
fclose(fpw);
return 0;
}
+ 1
attribute, identity, behaviour
0
Student
{
:
void hello() {
<< "hi from student" << endl;
}
};
How to do this one?
- 1
the three terms used to describe an object oriented programming are attributes ,behaviour,and;
- 5
a three terms which discribe the object in object oriented programing language