How do you verify if the two sentences/phrases input is an
anagram using predefined functions in string.h and by using
arrays?
No Answer is Posted For this Question
Be the First to Post Answer
write a program for area of circumference of shapes
main() { int a=2,*f1,*f2; f1=f2=&a; *f2+=*f2+=a+=2.5; printf("\n%d %d %d",a,*f1,*f2); }
#define assert(cond) if(!(cond)) \ (fprintf(stderr, "assertion failed: %s, file %s, line %d \n",#cond,\ __FILE__,__LINE__), abort()) void main() { int i = 10; if(i==0) assert(i < 100); else printf("This statement becomes else for if in assert macro"); }
Write a function to find the depth of a binary tree.
13 Answers Adobe, Amazon, EFI, Imagination Technologies,
Code for 1>"ascii to string" 2>"string to ascii"
1 Answers Aricent, Global Logic,
Write a C program to print ‘Campus Force training’ without using even a single semicolon in the program.
Develop a routine to reflect an object about an arbitrarily selected plane
What is full form of PEPSI
What is "far" and "near" pointers in "c"...?
print a semicolon using Cprogram without using a semicolon any where in the C code in ur program!!
35 Answers Tata Elxsi, TCS, VI eTrans,
main() { extern int i; { int i=20; { const volatile unsigned i=30; printf("%d",i); } printf("%d",i); } printf("%d",i); } int i;
#include<stdio.h> main() { register i=5; char j[]= "hello"; printf("%s %d",j,i); }