how to create a 3x3 two dimensional array that will give you the sums on the left and bottom columns
No Answer is Posted For this Question
Be the First to Post Answer
write a program in c to merge two array
What are the files which are automatically opened when a C file is executed?
how to concatenate the two strings
main() { int i = 3; for (;i++=0;) printf(ā%dā,i); }
How do you create a really large matrix (i.e. 3500x3500) in C without having the program crash? I can only reach up to 2500. It must have something to do with lack of memory. Please help!
write a program to count the number the same (letter/character foreg: 's') in a given sentence.
main() { if (!(1&&0)) { printf("OK I am done."); } else { printf("OK I am gone."); } } a. OK I am done b. OK I am gone c. compile error d. none of the above
How we print the table of 3 using for loop in c programing?
find A^B using Recursive function
void main() { int const * p=5; printf("%d",++(*p)); }
3 Answers Infosys, Made Easy, State Bank Of India SBI,
enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }
main() { struct date; struct student { char name[30]; struct date dob; }stud; struct date { int day,month,year; }; scanf("%s%d%d%d", stud.rollno, &student.dob.day, &student.dob.month, &student.dob.year); }