I have seen function declarations that look like this
No Answer is Posted For this Question
Be the First to Post Answer
What is the output for the program given below typedef enum grade{GOOD,BAD,WORST,}BAD; main() { BAD g1; g1=1; printf("%d",g1); }
pascal triangle program
why integer range between -327680to+32767
Can you assign a different address to an array tag?
What is the right type to use for boolean values in c? Is there a standard type?
#‎include‬<stdio.h> void main() { int i; for(i=5;0;i++) { printf("%d",i); } }
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
an algorithem for the implementation of circular doubly linked list
What is advantage of pointer in c?
Why doesn't the code "a[i] = i++;" work?
Why doesnt long int work?
What is int main () in c?