Why is c so important?
No Answer is Posted For this Question
Be the First to Post Answer
What is a pointer value and address in c?
What is a list in c?
What are compound statements?
can we initialize all the members of union?
int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }
wat is the meaning of c?
What is the difference between void main() and void main (void) give example programme?
Explain can the sizeof operator be used to tell the size of an array passed to a function?
What is the -> in c?
Write a Program to print this triangle: * ** * **** * ****** * ******** * ********** use two nested loops.
12 Answers MIT, TCS,
What is the correct code to have following output in c using nested for loop?
What does. int *x[](); means ?