What are the complete rules for header file searching?
No Answer is Posted For this Question
Be the First to Post Answer
What are local variables c?
What should not contain a header file?
what is compiler
print out of string in this format; 1. "rajesh" 2. \n 3. %d
void main() { //char ch; unsigned char ch; clrscr(); for(ch =0;ch<= 127; ch++) printf(" %c= %d \t ", ch, ch); } output?
What does dm mean sexually?
Explain the differences between public, protected, private and internal.
Explain what?s happening in the first constructor: public class c{ public c(string a) : this() {;}; public c() {;} } How is this construct useful?
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); }
where do we use volatile keyword?
What are comments and how do you insert it in a C program?
Given a piece of code int x[10]; int *ab; ab=x; To access the 6th element of the array which of the following is incorrect? (A) *(x+5) (B) x[5] (C) ab[5] (D) *(*ab+5} .