Do you know what is the purpose of 'extern' keyword in a function declaration?
No Answer is Posted For this Question
Be the First to Post Answer
write a program to generate 1st n fibonacci prime number
How variables are declared in c?
6)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1
diff .between strcture and union
When should a type cast not be used?
What is enumerated data type in c?
Tell us the difference between these two : #include"stdio.h" #include<stdio.h> define in detial.
Why do we need functions in c?
code for bubble sort?
writw a program to insert an element in the begning of a doubly linked list
difference between Low, Middle, High Level languages in c ?
Write a program to find minimum between three no.s whithout using comparison operator.