Answer Posted / guest
we r using this key word for equal and shine operator
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..
What is a scope resolution operator in c?
Differentiate call by value and call by reference?
What is malloc calloc and realloc in c?
Is it possible to use curly brackets ({}) to enclose single line code in c program?
What are different storage class specifiers in c?
Is boolean a datatype in c?
What does %c mean in c?
What is function prototype in c language?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......
Write program to remove duplicate in an array?
Why we use void main in c?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.