How is = symbol different from == symbol in c programming?
No Answer is Posted For this Question
Be the First to Post Answer
#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); }
how should functions be apportioned among source files?
What are the advantages of using macro in c language?
How the c program is executed?
Where local variables are stored in c?
How do you define a string?
What is null character in c?
What are the standard predefined macros?
const char * char * const What is the differnce between the above tow?.
What is Generic pointer? What is the purpose of Generic pointer? Where it is used?
what is the difference between : func (int list[], ...) or func (int *list , ....) - what is the difference if list is an array and if also if list is a pointer
What is console in c language?