how to find anagram without using string functions using
only loops in c programming
No Answer is Posted For this Question
Be the First to Post Answer
What is c language and why we use it?
What is getch() function?
Can we declare a function inside a function in c?
Who developed c language?
WHAT IS LOW LEVEL LANGUAGE?
typedef struct { int i:8; char c:9; float f:20; }st_temp; int getdata(st_temp *stptr) { stptr->i = 99; return stptr->i; } main() { st_temp local; int i; local.c = 'v'; local.i = 9; local.f = 23.65; printf(" %d %c %f",local.i,local.c,local.f); i = getdata(&local); printf("\n %d",i); getch(); } why there there is an error during compiling the above program?
What is the use of a ‘