What is variable declaration and definition in c?
No Answer is Posted For this Question
Be the First to Post Answer
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?
what is the output of following question? void main() { int i=0,a[3]; a[i]=i++; printf("%d",a[i] }
Differentiate between ordinary variable and pointer in c.
void main() { static int i = 5; if(--i) { main(); printf("%d ",i); } } what would be output of the above program and justify your answer? }
5 Answers C DAC, CDAC, Infosys, Wipro,
What is a built-in function in C?
can a union be self-referenced?
what will be the out put. #include<stdio.h> void main() { printf("Output:"); printf(1+"vikashpatel"); }//output: ikashpatel
How can I write a function analogous to scanf?
can we write a c program with out using main
What is break in c?
Why do we use int main?
Add Two Numbers Without Using the Addition Operator