How do you use a pointer to a function?
No Answer is Posted For this Question
Be the First to Post Answer
Write a C program to check a number even or odd, without using any relational, arithmetic operator and any loops.
how to print the character with maximum occurence and print that number of occurence too in a string given ?
The variables are int sum=10,SuM=20; these are same or different?
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
Explain what are binary trees?
What is use of #include in c?
write a program to fined second smallest and largest element in a given series of elements (without sorting)
to find the closest pair
What is the difference between memcpy and memmove?
What is the use of sizeof?
Identify the operators that is not used with pointer a. && b. # c. * d. >>
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