What is memcpy() function?
Explain how can you determine the size of an allocated portion of memory?
Diff between for loop and while loop?
Do you know what is a programing language ?
identify the in correct expression a.a=b=3=4; b.a=b=c=d=0; float a=int b=3.5; d.int a; float b; a=b=3.5;
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
Write a program to implement queue.
12. 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
How can variables be characterized?
what about "char *(*(*a[])())();"
Finding first/last occurrence of a character in a string without using strchr( ) /strrchr( ) function.
How to print India by nested loop? I IN IND INDI INDIA
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above