Give me basis knowledge of c , c++...

Answer Posted / raji

c having no security for data..but c++ having that
security,using class(access specifier).

Is This Answer Correct ?    5 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is c procedural or functional?

595


What are the types of type specifiers?

629


regarding pointers concept

1585


What's a good way to check for "close enough" floating-point equality?

636


Define recursion in c.

711






write a c program in such a way that if we enter the today date the output should be next day's date.

1695


List out few of the applications that make use of Multilinked Structures?

1326


Is struct oop?

595


write a programe to accept any two number and check the following condition using goto state ment.if a>b,print a & find whether it is even or odd and then print.and a

1459


Tell us the use of fflush() function in c language?

653


How can you find the exact size of a data type in c?

616


What is pointer to pointer in c?

642


Do you know pointer in c?

599


What is string function in c?

547


#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }

734