Define circular linked list.
No Answer is Posted For this Question
Be the First to Post Answer
What are identifiers in c?
void main() { int i=5; printf("%d",i++ + ++i); }
prototype of sine function.
What are reserved words?
How can this be legal c?
what is the difference between c and c++?
44.what is the difference between strcpy() and memcpy() function? 45.what is output of the following statetment? 46.Printf(“%x”, -1<<4); ? 47.will the program compile? int i; scanf(“%d”,i); printf(“%d”,i); 48.write a string copy function routine? 49.swap two integer variables without using a third temporary variable? 50.how do you redirect stdout value from a program to a file? 51.write a program that finds the factorial of a number using recursion?
What are c preprocessors?
A.C func() { pritnf(" in fuction %d",MACRO); } MAIN.c testfunc() { #define MACRO 10 printf("in test function %d", MACRO); } main() { printf("in main %d",MACRO); func(); testfunc(); getch(); }
What is the use of a static variable in c?
What is pointer to pointer in c language?
What is macro?