What is a shell structure examples?
No Answer is Posted For this Question
Be the First to Post Answer
What is modifier & how many types of modifiers available in c?
implement OR gate without using any bitwise operator.
int main() { int i=1; switch(i) { case '1': printf("hello"); break; case 1: printf("Hi"); break; case 49: printf("Good Morning"); break; } return 0; }
Heyyy All, Just a challenge . A C program with if Else if(){ /// insert sumthing print ("in if") // insert sumting } else { ///// insert sumthing print ("in else"); //// insert sumthing } can anyone modify it so that program prints. if and else both
Explain #pragma statements.
code snippet for creating a pyramids triangle ex 1 2 2 3 3 3
What is structure pointer in c?
What is the purpose of the code, and is there any problem with it? unsigned int f( unsigned n ) { return –n & 7; }
What is the difference between typedef and #define?
enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }
What is include directive in c?
What is #define in c?