code for find determinent of amatrix


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

main() { FILE *fs; char c[10]; fs = fopen(“source.txt”, ”r”); /* source.txt exists and contains “Vector Institute” */ fseek(fs,0,SEEK_END); fseek(fs,-3L,SEEK_CUR); fgets(c,5,fs); puts(c); }

1 Answers   Vector,


extern static int i func() { i =10; i++; printf("%d \n",i); } main() { i =20; printf("%d \n",i); func(); printf("%d \n",i); }

2 Answers  


wap to print "hello world" without using the main function.

22 Answers   TCS, Wipro,


Please write the area of a RIGHT ANGLED TRIANGLE.

1 Answers  


Why do we use return in c?

0 Answers  


Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We.....Are....Student “ Note: one .=1 Space Output: "We Are Student"

6 Answers   IBM,


Can you please explain the scope of static variables?

0 Answers  


Why do we use int main instead of void main in c?

0 Answers  


How do we open a binary file in Read/Write mode in C?

0 Answers   Alter,


what will be the out put. #include<stdio.h> void main() { printf("Output:"); printf(1+"vikashpatel"); }//output: ikashpatel

1 Answers   V2 Solutions,


How to print all the 26 alphabets in this order in C. AbCdEfGh..... it should print dynamically from a to z and do not print this using pgm like this print("Ab......"); Use loops or anything to print all alphabets

2 Answers   Hexaware,


where do we use structure pointer?

1 Answers  


Categories