What is union and structure in c?
No Answer is Posted For this Question
Be the First to Post Answer
Differentiate between null and void pointers.
If I have a char * variable pointing to the name of a function ..
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
What is a static variable in c?
Is an array parameter is always "by reference" ?
What is the output of below code? main() { static int a=5; printf("%3d",a--); if(a) main(); }
EXPLAIN #INCLUDE<STDIO.H> EXPLAIN #INCLUDE<CONIO.H>
write a c program to remove all the duplicate characters in a string and replace with single character? ex:-input- AAABBBCCC output- ABC
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
What does struct node * mean?
Is it acceptable to declare/define a variable in a c header?
What is a newline escape sequence?