What is an arrays?
No Answer is Posted For this Question
Be the First to Post Answer
What are the types of type specifiers?
what is the main use of c where it can use the c
what is the format specifier for printing a pointer value?
What is pointer and structure in c?
what is the difference between const volatile int i & volatile const int j;
write a progrmm in c language take user interface generate table using for loop?
What are dangling pointers?
1)what is the error in the following stmt where str is a char array and the stmt is supposed to traverse through the whole character string str? for(i=0;str[i];i++) a)There is no error. b)There shud be no ; after the stmt. c)The cond shud be str[i]!='\0' d)The cond shud be str[i]!=NULL e)i shud be initialized to 1
Explain what is a program flowchart and explain how does it help in writing a program?
Write a program to find the given number is odd or even without using any loops(if,for,do,while)
1.what are local and global variables? 2.what is the scope of static variables? 3.what is the difference between static and global variables? 4.what are volatile variables? 5.what is the use of 'auto' keyword? 6.how do we make a global variable accessible across files? Explain the extern keyword? 7.what is a function prototype? 8.what does keyword 'extern' mean in a function declaration?
Write a code on reverse string and its complexity.