The __________ attribute is used to announce variables based on definitions of columns in a table?
No Answer is Posted For this Question
Be the First to Post Answer
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
What is sparse file?
what is the maximum limit of row and column of a matrix in c programming. in linux .
What is the diffrent between while and do while statement ?
What is the difference between fread buffer() and fwrite buffer()?
Is it acceptable to declare/define a variable in a c header?
# define x=1+4; main() { int x; printf("%d%d",x/2,x/4); }
What are local variables c?
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only
Difference between MAC vs. IP Addressing
What is the output of the program #include<stdio.h> #include<conio.h> void main() {0 int i,j=20; clrscr(); for(i=1;i<3;i++) { printf("%d,",i); continue; printf("%d",j); break; } getch(); }
What is pass by reference in c?