What is d scanf?
No Answer is Posted For this Question
Be the First to Post Answer
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
Distinguish between actual and formal arguments.
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
I need a sort of an approximate strcmp routine?
24.what is a void pointer? 25.why arithmetic operation can’t be performed on a void pointer? 26.differentiate between const char *a; char *const a; and char const *a; 27.compare array with pointer? 28.what is a NULL pointer? 29.what does ‘segmentation violation’ mean? 30.what does ‘Bus Error’ mean? 31.Define function pointers? 32.How do you initialize function pointers? Give an example? 33.where can function pointers be used?
Linked lists -- can you tell me how to check whether a linked list is circular?
Explain the properties of union. What is the size of a union variable
plz answer..... a program that reads non-negative integer and computes and prints its factorial
What does struct node * mean?
progrem to generate the following series 1 12 123 1234 12345
#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }
Write a program to generate prime factors of a given integer?