What is 1d array in c?
No Answer is Posted For this Question
Be the First to Post Answer
Explain how do you override a defined macro?
what are the facialities provided by you after the selection of the student.
What are the uses of null pointers?
#include<stdio.h> #include<conio.h> void main() { char ch='\356'; printf("%d",ch); } o/p=-18 why?plz.explain
How can I insert or delete a line (or record) in the middle of a file?
What are c identifiers?
simple c program for 12345 convert 54321 with out using string
What is a structural principle?
difference between object file and executable file
#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }
What happens if you free a pointer twice?
i want the code for printing the output as follows 4 4 3 3 2 2 1 1 0 1 1 2 2 3 3 4 4