How do we make a global variable accessible across files?
Explain the extern keyword?
No Answer is Posted For this Question
Be the First to Post Answer
What does *p++ do? What does it point to?
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
int main() { int i=-1,j=-1;k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d%d%d%d%d",i,j,k,l,m); }
What are reserved words with a programming language?
What is this pointer in c plus plus?
Write a program to add the following ¼+2/4+3/4+5/3+6/3+... (Like up to any 12 no.s)
Why do we use null pointer?
What is the use of a conditional inclusion statement in C?
Explain what are linked list?
Input any no. and print all the the numbers that comes before it like this for e.g input = 4 0 01 012 0123 01234 plz answer it 2day
What is 2 d array in c?
write a “Hello World” program in “c” without using a semicolon?