What are the different flags in C? And how they are useful?
And give example for each in different consequences?
Answer / archana
\a , \f, \r, \n , \b are the flags
\a means audible bell
\n= new line
\r= next page
| Is This Answer Correct ? | 1 Yes | 2 No |
When should a far pointer be used?
11. Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
When c language was developed?
Tell us something about keyword 'auto'.
Place the #include statement must be written in the program?
Why doesnt this code work?
List some of the static data structures in C?
Can you explain the four storage classes in C?
3. Program to print all possible substrings. ex: String S St Str Stri Strin String t tr tri trin tring r
const char * char * const What is the differnce between the above tow?.
What are logical errors and how does it differ from syntax errors?