What are static functions?
Answer / nashiinformaticssolutions
Functions declared with static have internal linkage, accessible only within the file.
| Is This Answer Correct ? | 0 Yes | 0 No |
Subtract Two Number Without Using Subtraction Operator
What is const keyword in c?
# define prod(a,b)=a*b main() { int x=2; int y=3; printf("%d",prod(x+2,y-10)); } the output of the program is a.8 b.6 c.7 d.none
main() { printf(5+"good morning"); printf("%c","abcdefgh"[4]); }the o/p is morning and e...how someone explain
Reverse the bit order in a single macro. eg. i/p = 10010101 --> o/p = 10101001
What is the size of enum in c?
What is the difference between macros and inline functions?
What will be the result of the following C language program? main() { int a = 0; int b = 20; char x = 1; char y = 10; if(a,b,x,y) printf("Welcome"); }
why we are using semicolon at the end of printh statment
What is a memory leak? How to avoid it?
What is a pointer in c?
In C programming, how do you insert quote characters (‘ and “) into the output screen?