using for loop sum 2 number of any 4 digit number in c
language
No Answer is Posted For this Question
Be the First to Post Answer
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
How do you prevent buffer overflows in C?
What is pointer to pointer in c with example?
Is main is user defined function?
What is the use of the #include directive?
what is meant by the "equivalence of pointers and arrays" in C?
What are the advantages and disadvantages of pointers?
How can I implement sets or arrays of bits?
Why does this code crash?
Which is not valid in C? 1) class aClass{public:int x;} 2) /* A comment */ 3) char x=12;
What are the phases in s/w developed life cycle? wat is the diff b/w stack & queue...where do we use stack
what is the Output? int a=4 b=3; printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++); printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);