What is C language ?
No Answer is Posted For this Question
Be the First to Post Answer
What Is The Difference Between Null And Void Pointer?
Explain two-dimensional array.
What is static and auto variables in c?
Are enumerations really portable?
WHAT IS PRE POSSESSORS?
1) int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain the explain the output
#include<stdio.h> main() { int i=5; printf("%d",i*i-- - --i*i*i++ + ++i); } tell the answer with correct reason .specially reason is important nt answer ans by turbo c is -39
How many types of sorting are there in c?
Why the below program throughs error during compilation? #include<stdio.h> #include<conio.h> enum { ZERO, ONE, TWO, }; main() { printf("%d",&TWO); getch(); }
What is Memory leakage ?
Are the variables argc and argv are always local to main?
What is the use of the function in c?