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 |
triangle number finding program...
1 1 2 1 2 3 1 2 3 4 1 2 3 1 2 1 generate this output using for loop
how to swap 4 number without using temporary number?
here is a link to download Let_Us_C_-_Yashwant_Kanetkar
what are the facialities provided by you after the selection of the student.
What is the significance of scope resolution operator?
0 Answers Agilent, ZS Associates,
How can you access memory located at a certain address?
#include<stdio.h> #include<conio.h> void main() { int m=0111,n=20; printf("%d%d\n",m,n); getch(); }
What is calloc() function?
provide an example of the Group by clause, when would you use this clause
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
what is the output of the following code? main() { int I; I=0x10+010+10; printf("x=%x",I); } give detailed reason