Answer Posted / rashmi
#include<stdio.h>
main()
{
printf("\%d");
}
| Is This Answer Correct ? | 5 Yes | 9 No |
Post New Answer View All Answers
Why is c still so popular?
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
Explain how can I prevent another program from modifying part of a file that I am modifying?
Is main is user defined function?
What is structure in c language?
How many bytes are occupied by near, far and huge pointers (dos)?
What is enumerated data type in c?
Explain the use of fflush() function?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
Can we use visual studio for c?
What is function pointer c?
Why do we use int main instead of void main in c?
What is nested structure in c?
Why do we use & in c?
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..