Can we initialize extern variable in c?
void main() {int i=2; printf("%d%d%d",i,++i,i++); getch(); }
Ow can I insert or delete a line (or record) in the middle of a file?
How do you view the path?
Write a c program to demonstrate Type casting in c?
How do you write a program which produces its own source code as output?
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300,200,100
HOW TO HANDLE EXCEPTIONS 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..
Which is best linux os?
What is d scanf?
write an algorithm and a program to count the number of elements in a circularly singly linked list
What are the advantages and disadvantages of a heap?