Define circular linked list.
No Answer is Posted For this Question
Be the First to Post Answer
main() { char x; while(x=0;x<=255;x++) printf("\nAscii value %d Charater %c",x,x); }
what is the difference between strcpy() and memcpy() function?
What is wrong with this statement? Myname = 'robin';
Which one would you prefer - a macro or a function?
please give me some tips for the selection in TCS.
main() { int arr[5]={23,67}; printf("%d%d%d",arr[2],arr[3],arr[4]); }
What is the concatenation operator?
Determine the code below, tell me exactly how many times is the operation sum++ performed ? for ( i = 0; i < 100; i++ ) for ( j = 100; j > 100 - i; j--) sum++;
please can some one guide me, to the answer Write a C program to enter 15 numbers as an input from the keyboard and program will find and print odd numbers and their average. i have studied while and do while loop for loop if and else if switch
Why is c faster?
Explain the meaning of keyword 'extern' in a function declaration.
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none