+ 6
What is the use of private key word in c language ?
We will use private keyword for classes in c++ but what is the use of private keyword in c. In c complier the private keyword cannot used as a variable also and why is that ?
2 Answers
+ 9
There is no `private` keyword in C.
`private` is valid identifier in C
#include <stdio.h>
int main() {
int private = 6;
printf("%d",private);
return 0;
}
+ 7
Thanks š®š³Omkarš I was just going to say that c has no 'private' keyword as that was something that came into cpp.
Here are some other keywords that you may not have known as far as c
https://en.m.wikibooks.org/wiki/C_Programming/Language_Reference