What is a static function in c?
main() { enum{red,green,blue=6,white}; pf("%d%d%d%d", red,green,blue,white); return 0; } a)0 1 6 2 b)0 1 6 7 c)Compilation error d)None of the above
What is #define used for in c?
What is meaning of "Void main" in C Language.
24 Answers Ford, GU, HCL, IBIBS, JUW, TCS,
What is the purpose of 'register' keyword in c language?
#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }
Write a program to generate prime factors of a given integer?
main() {char a[10]={1,2,3,4,5,6};int x; for(x=0;x<4;x++){ b[x]=x+'a';} printf("%s",b);}
union { char ch[10]; short s; }test; test.s = 0xabcd; main() { printf("%d",ch[10]); }
What does emoji p mean?
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
WHY DO WE USE A TERMINATOR IN C LANGUAGE?
Why array starts with index 0