What does the c preprocessor do?
No Answer is Posted For this Question
Be the First to Post Answer
What is character set?
Write any data structure program (stack implementation)
When should we use pointers in a c program?
who is the father of c
Is c easy to learn?
what is the difference between class and unio?
write a program that will print %d in the output screen??
What is c language in simple words?
How pointer is different from array?
When can you use a pointer with a function?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
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