Compare interpreters and compilers.
No Answer is Posted For this Question
Be the First to Post Answer
Explain how can you tell whether two strings are the same?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
15.what is the disadvantage of using macros? 16.what is the self-referential structure? 17.can a union be self-referenced? 18.What is a pointer? 19.What is the Lvalue and Rvalue? 20.what is the difference between these initializations? 21.Char a[]=”string”; 22.Char *p=”literal”; 23.Does *p++ increment p, or what it points to?
biggest of two no's with out using if condition statement
Is calloc better than malloc?
My teacher ask to make a program that can: Insert record in front Insert record at the end Insert in between Search node record Delete record in front Delete record at the end Delete record in between Using Data structure Linked List type. But I'm really confused about the codes and I can't go through. Please help Thanks in advance. Also here is my unfinished code if someone can make changes it will be more good.
The __________ attribute is used to announce variables based on definitions of columns in a table?
What is modifier & how many types of modifiers available in c?
write a code for large nos multilication (upto 200 digits)
What is a nested loop?
i want to know the procedure of qualcomm for getting a job through offcampus
Explain which function in c can be used to append a string to another string?