What is structure data type in c?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int a[3][4] ={1,2,3,4,5,6,7,8,9,10,11,12} ; int i, j , k=99 ; for(i=0;i<3;i++) for(j=0;j<4;j++) if(a[i][j] < k) k = a[i][j]; printf("%d", k); }
4 Answers Vector, Wipro, Zoho,
what is the difference between class and unio?
how to print 212 as Twohundreds twelve plz provide me ans soon
Is calloc better than malloc?
code snippet for creating a pyramids triangle ex 1 2 2 3 3 3
Which is the memory area not included in C program? give the reason
WRITE A PROGRAM TO PRINT THE FOLLOWING OUTPUTS USING FOR LOOPS. A) * B) ***** *** * * ***** * * *****
What is masking?
Why do we need arrays in c?
What is queue in c?
int main() { int days; printf("enter days you are late"); scanf("%d",days); if (days<=5) printf("5o paisa fine"); if (days<=10&&days>=6) printf("1rs fine"); if(days>10) printf("10 rs fine"); if(days=30) printf("membership cancelled"); return 0; } tell me whats wrong in this program? is it right?
how to multiply two number taking input as a string (considering sum and carry )