Explain what is a static function?
No Answer is Posted For this Question
Be the First to Post Answer
what will be the out put. #include<stdio.h> void main() { printf("Output:"); printf(1+"vikashpatel"); }//output: ikashpatel
Is it valid to address one element beyond the end of an array?
What is enumerated data type in c?
What is c basic?
How does struct work in c?
why array index always starts from zero??
What are the header files used in c language?
main() { int i,j,A; for(A=-1;A<=1;A++) prinf("%d\t",!!A); }
enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }
What is the difference between far and near in c?
What is the explanation for the dangling pointer in c?
HOW TO FIND OUT THE RREVERS OF A GIVEN DIGIT NUMBER IF IT IS INPUT THROUGH THE KEYBORD BY USING C LANGUAGE