When is the “void” keyword used in a function?
When used as a function return type, the void keyword specifies that the function doesn't return a value. When used for a function's parameter list, void specifies that the function takes no parameters. When used in the declaration of a pointer, void specifies that the pointer is "universal."
| Is This Answer Correct ? | 0 Yes | 0 No |
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code
What does sizeof int return?
what is a stack
What is the hardest programming language?
Table of Sudoku n*n
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
What is the difference between strcpy() and memcpy() function in c programming?
Write a C program to print 1 2 3 ... 100 without using loops?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile
what will be the result of the following program ? char *gxxx() { static char xxx[1024]; return xxx; } main() { char *g="string"; strcpy(gxxx(),g); g = gxxx(); strcpy(g,"oldstring"); printf("The string is : %s",gxxx()); } a) The string is : string b) The string is :Oldstring c) Run time error/Core dump d) Syntax error during compilation e) None of these
Define circular linked list.