Why do we use & in c?
No Answer is Posted For this Question
Be the First to Post Answer
Can a pointer be static?
which one low Priority in c? a)=,b)++,c)==,d)+
Without using main fn and semicolon,print remainder for a given number in C language
what is diff between localstatic and globalstatis variable possible 2 use in another file...?
how to write hello word without using semicolon at the end?
How does struct work in c?
Do pointers take up memory?
what is real time system?what is the differance between hard and soft real time systems
if we take a number as a char then can we manipulate(add, subtract) on this number
what is the difference between getch() and getche()?
Why c is called a mid level programming language?
#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }