What is strcmp in c?
No Answer is Posted For this Question
Be the First to Post Answer
find the output of the following program main() { int x=5, *p; p=&x; printf("%d",++*p); }
what is the difference between embedded c and turbo c ?
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
What do you mean by dynamic memory allocation in c? What functions are used?
Stimulate calculator using Switch-case-default statement for two numbers
differentiate built-in functions and user – defined functions.
What is the output for the following program #include<stdio.h> main() { char a[5][5],flag; a[0][0]='A'; flag=((a==*a)&&(*a==a[0])); printf("%d\n",flag); }
What is the purpose of main( ) in c language?
change to postfix a/(b+c*d-e)
In header files whether functions are declared or defined?
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?
Explain how do you declare an array that will hold more than 64kb of data?