what is stack , heap ,code segment,and data segment
how can i print "hello"
what is the output of the following program? #include<stdio.h> void main() { int x=4,y=3,z; z=x-- -y; printf("\n%d %d %d",x,y,z); }
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
int far *near * p; means
triangle number finding program...
the expression a=30*1000+2768; evalutes to a) 32768 b) -32768 c) 113040 d) 0
write a program that will accept two integers and will implement division without using the division operator if the second value is an odd number and will implement multiplication without using multiplication operator if the second value is an even number.
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
WAP to convert text into its ASCII Code and also write a function to decode the text given?
is compiler do read the data line by line or not. ??
6 Answers LG Soft, Satyam, Tech Mahindra,
f1() { f(3);} f(int t) { switch(t); { case 2: c=3; case 3: c=4; case 4: c=5; case 5: c=6; default: c=0;} value of c?
What is the benefit of using const for declaring constants?