Differentiate between declaring a variable and defining a variable?
No Answer is Posted For this Question
Be the First to Post Answer
What is c programming structure?
how to find the size of the data type like int,float without using the sizeof operator?
What is this infamous null pointer, anyway?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
what will be the output of this program? void main() { int a[]={5,10,15}; int i=0,num; num=a[++i] + ++i +(++i); printf("%d",num); }
What are shell structures used for?
Is main an identifier in c?
how to implement stack work as a queue?
What is line in c preprocessor?
Write a program to print “hello world” without using semicolon?
What are the benefits of organizational structure?
Write a C program to multiply tho numbers without using arithmetic operator (+, -, *, /).