Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result
No Answer is Posted For this Question
Be the First to Post Answer
How can I read data from data files with particular formats?
plssssss help !!....using array.. turbo c.. create a program that will accept number of words to be consored. .a word must not exceed 10 characters long .the text to be entered will be no longer than 200 characters .there will be no 10 words example: enter number of words to be censor: 5 enter words to censor: windows office microsoft bill gates enter text to censor: bill gates founded microsoft and makes office and windows sample output: <consored> <censored> founded <censored> and makes <censored> and <censored>
What is the relationship between pointers and data structure?
Program to find largest of three numbers without using comparsion operator?
how to set Nth bit of variable by using MACRO
6)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1
What is the difference between exit() and _exit() function in c?
wat is the meaning of c?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
Apart from dennis ritchie who the other person who contributed in design of c language.
HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????
proc() { static i=10; printf("%d",i); } If this proc() is called second time, what is the output?