How do you determine the length of a string value that was stored in a variable?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what is the purpose of "extern" keyword in a function declaration?
#define MAX 3 main() { printf("MAX = %d \n",MAX ); #undef MAX #ifdef MAX printf("Vector Instituteā); #endif
What is the benefit of using const for declaring constants?
What are run-time errors?
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); } what is the output?
Three major criteria of scheduling.
What is const keyword in c?
c programs are converted into machine language with the help of a) an interpreter b) a compiler c) an operatinf system d) none of the above
What is the sizeof () operator?
What are high level languages like C and FORTRAN also known as?
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);