How can a process change an environment variable in its caller?
No Answer is Posted For this Question
Be the First to Post Answer
Is c# a good language?
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
write a programe returns the number of times the character appears in the string
Given a single Linked list with lakhs of nodes and length unknown how do you optimally delete the nth element from the list?
What is the heap?
write a program to display the numbers having digit 9 in the given range from 1 to 100
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..
Does c have circular shift operators?
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
Write a C program to print 1 2 3 ... 100 without using loops?
What is array of structure in c?
Which is best linux os?