Explain how can you tell whether two strings are the same?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to implement queue.
Find greatest of two numbers using macro
What are bit fields? What is their use?
what is the output? #define fun(a,b,t) (g ##t=(a),(a)=(b),(b)=g##t) float gfloat; main() { float a=1.12,b=3.14; fun (a,b,float); printf("na=%4.2f,b=%4.2f",a,b); } A)Error in Defining Macro B)a=1.12,b=3.14 C)a=3.14,b=1.12 D)None of the Above
3 Answers Accenture, Infosys, Wipro,
main() { int x, arr[8]={11,22,33,44,55,66,77,88}; x=(arr+2)[3]; printf(ā%dā,x); }
What are the advantages and disadvantages of c language?
The statement, int(*x[]) () what does in indicate?
What is meant by initialization and how we initialize a variable?
Program to trim a given character from a string.
WHAT IS HEADER?
What is the size of structure pointer in c?
write a program of bubble sort using pointer?