if p is a string contained in a string?
No Answer is Posted For this Question
Be the First to Post Answer
How do shell structures work?
Given an array of length N containing integers between 1 and N, determine if it contains any duplicates.
The C language terminator is a.semicolon b.colon c.period d.exclamation mark
An array name contains base address of the array. Can we change the base address of the array?
WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.
Hai what is the different types of versions and their differences
wap to print "hello world" without using the main function.
How do I convert a string to all upper or lower case?
What is pointer to pointer in c language?
difference between spiral and waterfall model
How would you sort a linked list?
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