Difference between linking and loading?
No Answer is Posted For this Question
Be the First to Post Answer
Program to find the value of e raised to power x using while loop
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..
Program to find the sum of digits of a given number until the sum becomes a single digit
can we implement multi-threads in c.
Explain function?
Write a program which take a integer from user and tell whether the given variable is squar of some number or not. eg: is this number is 1,4,9,16... or not
What do you mean by a sequential access file?
What is the difference between printf and scanf in c?
is assignment operator is arithmatic or not
please help me..... please codes and flowchart plz turbo c lang po yan.....please asap response... 3. Make an astrology program. The user types in his or her birthday (month, day, and year as integer), and the program responds with the user’s zodiac sign, horoscope, and other information related to it. If the user’s birth year falls into a leap year, your program should display an appropriate message for it. NOTES: Conditional Statements: it should be with graphics
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.
What is call by reference in functions?