Can we declare variable anywhere in c?
No Answer is Posted For this Question
Be the First to Post Answer
#include<conio.h> #include<stdio.h> void main() { int i; if(1,0,2,3) { printf("if"); } else { printf("else"); } getch(); } Can any body tell the answer of this question with explanation?
write a c program to find the probability of random numbers between 1-1000
Where in memory are my variables stored?
Tell me when is a void pointer used?
What is a shell structure examples?
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=?
How can I insert or delete a line (or record) in the middle of a file?
Is there any demerits of using pointer?
sir, i cannot find the way how to write aprogram by using array on queue
how to use enum datatype?Please explain me?
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?