Describe the difference between = and == symbols in c programming?
No Answer is Posted For this Question
Be the First to Post Answer
about c language
Explain what does the format %10.2 mean when included in a printf statement?
what is the use of call back function in c?tell me with example
Why malloc is faster than calloc?
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
Who developed c language?
Explain how can you avoid including a header more than once?
Is there something we can do in C but not in C++? Declare variable names that are keywords in C++ but not C.
int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain me output????
What is a stream in c programming?
What does return 1 means in c?
What is pointer to pointer in c with example?