program to print upper & lower triangle of a matrix
Answer
Is This Answer Correct ? | 6 Yes | 9 No |
what is d pitfalls of registers variables
Answer
Is This Answer Correct ? | 1 Yes | 0 No |
what is the output of the below program & why ?
#include
void main()
{
int a=10,b=20,c=30;
printf("%d",scanf("%d%d%d",&a,&b,&c));
}
Answer
Is This Answer Correct ? | 1 Yes | 0 No |
what is the purpose of the code, and is there any problem
with it.
unsigned int v[10];
unsigned int i = 0;
while (i < 10)
v[i] = i++;
Answer
Is This Answer Correct ? | 4 Yes | 3 No |
Question { 4137 }
how to write a cprogram yo get output in the form
*
***
*****
*******
*********
*******
*****
***
*
Answer
Is This Answer Correct ? | 1 Yes | 0 No |