if p is a string contained in a string?
No Answer is Posted For this Question
Be the First to Post Answer
How does the assert() function work?
Write a program which calculate sum of several number and input it into an array. Then, the sum of all the number in the array is calculated.
Differentiate fundamental data types and derived data types in C.
how to find out the union of two character arrays?
Is swift based on c?
Read two numbers from keyboard and find maximum of them?
What are high level languages like C and FORTRAN also known as?
Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV
write a proram to reverse the string using switch case?
What is #line?
1. Write the function int countchtr(char string[ ], int ch); which returns the number of times the character ch appears in the string. Example, the call countchtr(“She lives in NEWYORK”, ‘e’) would return 3.
can we initialize all the members of union?