what is the maximum limit of row and column of a matrix in c
programming. in linux .
Answers were Sorted based on User's Feedback
Explain what is the benefit of using const for declaring constants?
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
What is the code for 3 questions and answer check in VisualBasic.Net?
Is the following code legal? struct a { int x; struct a b; }
void main() { int s[4][2]={ {1234,56},{1212,33},{1434,80},{1312,78} }; int (*p)[2]; int i,j,*pint; for(i=0;i<=3;i++) { p=&s[i]; pint=p; printf("\n"); for(j=0;j<=1;j++) printf("%d",*(pint+j)); } } while running this program it shows a warning-suspicious pointer conversion ie pint=p; my que is why should we assign the value of p to pint again.why cant we use it directly as *(p+j)..but if i use like tat the o/p is garbage value..
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 does 4d mean in c?
where can function pointers be used?
Is a house a mass structure?
Write a program that receives as input a number omaadel-n-print, four digits.
How can I write a function analogous to scanf?
Program to find the absolute value of given integer using Conditional Operators