What was noalias and what ever happened to it?
No Answer is Posted For this Question
Be the First to Post Answer
What does emoji p mean?
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...
Which is best linux os?
why do we use pointer instead directly acessing the data?
a=0; while(a<5) printf("%d\n",a++); how many times does the loop occurs? a.infinite b.5 c.4 d.6
can a union be self-referenced?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
why effort estimation is important?
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
main() { int i,n=010; int sum=0; for(i=1;i<=n;i++) {s=s+i; } printf("%d",&s); getch(); }