How can I send mail from within a c program?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?
Explain 'bit masking'?
What does p mean in physics?
the output will be #include<stdio.h> int main () { int i; i = 9/2; printf("%i",i); return 0; }
void main() { static int i = 5; if(--i) { main(); printf("%d ",i); } } what would be output of the above program and justify your answer? }
5 Answers C DAC, CDAC, Infosys, Wipro,
Explain how does free() know explain how much memory to release?
What are pointers in C? Give an example where to illustrate their significance.
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
State the difference between realloc and free.
write a prgram of swapping with 2 valiables
the number 138 is called well ordered number because the three digits in the number (1,3,8) increase from left to right (1<3<8). the number 365 is not well ordered coz 6 is larger than 5. write a program that wull find and display all possible three digit well ordered numbers. sample: 123,124,125,126,127,128,129,134 ,135,136,137,138,139,145,146,147 148 149,156.......789
When is the “void” keyword used in a function?