Why we use void main in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is variables in c?
Is it acceptable to declare/define a variable in a c header?
disadvantages of realloc ?
#include <stdio.h> void main() { int i=-1,j=1,k,l; k=!i&&j; l=!i||j; printf ("%d%d",k,l) ; }
Is there any possibility to create customized header file with c programming language?
How can I find the modification date of a file?
How can I access memory located at a certain address?
How a string is stored in c?
int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
Explain what is the concatenation operator?
What is Full Form of C and Why We use C
what do you mean by enumeration constant?