What are the advantages of using linked list for tree construction?
What is bss in c?
main() { static int ivar=5; printf("%d",ivar--); if(ivar) main(); }
Find if a number is power of two or not?
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); }
11 Answers CISOC, CitiGroup, College School Exams Tests,
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
Is main() is used in the program,,see below example? void main() { int i; for(i=0;i<10;i++) main(); } Then what is the output of the program?
What does the file stdio.h contain?
can we declare a function inside the structure? ex: struct book { int pages; float price; int library(int,float); }b; is the above declaration correct? as it has function declaration?
In c language can we compile a program without main() function?
Do you know the purpose of 'register' keyword?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
struct ptr { int a; char b; int *p; }abc; what is d sizeof structure without using "sizeof" operator??