Why ca not I do something like this?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of sizeof?
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; }
struct abc { unsigned int a; char b; float r; }; struct xyz { int u; struct abc tt; }ww; ww = (struct xyz*)malloc(sizeof(struct xyz)); will the memory be allocated for the inner structure also?
What are the two types of functions in c?
What is meant by preprocessor in c?
. Consider the following program main() { int a[5]={1,3,6,7,0}; int *b; b=&a[2]; } The value of b[-1] is (A) 1 (B) 3 (C) -6 (D) none
What is switch in c?
What is #line in c?
what is answer for perfect number????????????????
the format specified for hexa decimal is a.%d b.%o c.%x d.%u
Why use int main instead of void main?
Can you think of a logic behind the game minesweeper.