What is the meaning of c in c language?
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
Write a program to write a given string in maximum possibilities? i.e str[5]="reddy"; i.e we can write this string in 120 ways for that write a program
what is object oriental programing?
What is null pointer in c?
What does the && operator do in a program code?
why we are using semicolon at the end of printh statment
Define macros.
where do we use volatile keyword?
What do you mean by a sequential access file?
What is the use of in c?
what is a headerfile?and what will be a program without it explain nan example?
main() { float a=8.8; double b=8.8; if(a==b) printf("Equal"); else printf("not equal"); getch(); } what is the output? with reason