What is void main ()?
No Answer is Posted For this Question
Be the First to Post Answer
how to use virual function in real time example
Explain function?
What is scope and lifetime of a variable in c?
name the language for writing c compiler?
How can I get back to the interactive keyboard if stdin is redirected?
will the program compile? int i; scanf(ā%dā,i); printf(ā%dā,i);
Is it possible to use curly brackets ({}) to enclose single line code in c program?
What are function pointers? Provide an example.
write a program in C to swap two variables
What extern c means?
main() { static int ivar=5; printf("%d",ivar--); if(ivar) main(); }
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..