Explain what is the purpose of "extern" keyword in a function declaration?
No Answer is Posted For this Question
Be the First to Post Answer
what is structuer?
define function
What is C++
Which of the following about the C comments is incorrect ? a.commentscan go over multiple lines b.comments can start any where in the line c.a line can contain comments with out any language statements d.comments can occur within comments
What are c identifiers?
What is the difference between macros and inline functions?
Apart from dennis ritchie who the other person who contributed in design of c language.
What are the types of arrays in c?
What is the output from this program? #include <stdio.h> void do_something(int *thisp, int that) { int the_other; the_other = 5; that = 2 + the_other; *thisp = the_other * that; } int main(void) { int first, second; first = 1; second = 2; do_something(&second, first); printf("%4d%4d\n", first, second); return 0; }
Identify the operators that is not used with pointer a. && b. # c. * d. >>
logic for x=y^n
what will be the output of this program main() { int i=1; while (i<=10); { i++; } }