What would be an example of a structure analogous to structure c?
No Answer is Posted For this Question
Be the First to Post Answer
Program to find the sum of digits of a given number until the sum becomes a single digit
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 use of clrscr?
Describe the header file and its usage in c programming?
HOW TO HANDLE EXCEPTIONS IN C
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
if function is declared as static in one source file, if I would like to use the same function in some other source file...is it possible....how ?
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
WRITE A PROGRAM TO PRINT THE FOLLOWING OUTPUTS USING FOR LOOPS. A) * B) ***** *** * * ***** * * *****
What are the 3 types of structures?
Develop a flow chart and write a c program to find the roots of a quadratic equation ax2+bx+c=0 using switch and break statement.
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.