What are the different types of endless loops?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
The number of measuring units from an arbitarary starting point in a record,area,or control block to some other point a) recording pointer b) offset c) branching d) none
What is pointer & why it is used?
Why is c used in embedded systems?
Are enumerations really portable?
Tell me when is a void pointer used?
what is the use of ~ in c lang?????
What are the advantages of using Unions?
The file stdio.h, what does it contain?
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..
Do you know the use of 'auto' keyword?
Differentiate call by value and call by reference?