What is the purpose of the preprocessor directive error?
No Answer is Posted For this Question
Be the First to Post Answer
What is pointer & why it is used?
What is the difference between break and continue?
How does the C program handle segmentation faults?
main() { int i,j,A; for(A=-1;A<=1;A++) prinf("%d\t",!!A); }
IS it possible to define a zero sized array in c.if it is possible how can the elements of that array can be accessed.array index starts from zero,if it is possible to define zero sized array how can be its first element can be accesseed.
What are the loops in c?
Write a program of advanced Fibonacci series.
How to write a code for random pick from 1-1000 numbers? The output should contain the 10 numbers from the range 1-1000 which should pick randomly, ie ,for each time we run the code we should get different outputs.
What is the output of the program given below #include<stdio.h> main() { char i=0; for(;i>=0;i++) ; printf("%d\n",i); }
21 Answers ADITI, Student, TCS,
int i=10; printf("%d %d %d", i, i=20, i);
What are dynamically linked and statically linked libraries?
what is used instead of pointers in java than c?