Is array a primitive data type in c?
No Answer is Posted For this Question
Be the First to Post Answer
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
how to find sum of digits in C?
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
Write a C program that defines a 2-dimentional integer array called A [50][50]. Then the elements of this array should randomly be initialized either to 1 or 0. The program should then print out all the elements in the diagonal (i.e. a[0][0], a[1][1],a[2][2], a[3][3], ……..a[49][49]). Finally, print out how many zeros and ones in the diagonal.
which one is better structure or union?(other than the space occupied )
what is the associativity of bitwise OR operator?
what is difference between #include<stdio.h> and #include"stdio.h"
Is exit(status) truly equivalent to returning the same status from main?
What are linked lists in c?
what is the diffrenet bettwen HTTP and internet protocol
What are predefined functions 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?