What is s or c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the output of below code? main() { static in a=5; printf("%3d",a--); if(a) main(); }
How do we select the big element or any other operation from array which is read dynamically. user need to give the elements only no need to mention the size.
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
why Language C is plateform dependent
Is c a great language, or what?
While(1) { } when this loop get terminate is it a infinite loop?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
Explain what is operator promotion?
actually i have 2 years teaching experience as computer faculty but now i am a DBA but when i go for interview many peoples asked me why i left my teaching profession and why i want to come in this field kindly give me the proper answer of this queston
#include <stdio.h> int main ( int argc, char* argv [ ] ) { int value1 = 10; int value2 = 5; printf ( "\n The sum is :%d", value1 | value2 ); } This is the answer asked by some one to add two numbers with out using arithmetic operator?Yes this answer is write it given out put as 15.But how????? what is need of following line? int main ( int argc, char* argv [ ] ) how it work?what is the meaning for this line? please explain me.Advance thanks
Compare array data type to pointer data type
Does * p ++ increment p or what it points to?