What is wrong with this statement? Myname = 'robin';
No Answer is Posted For this Question
Be the First to Post Answer
What are the different types of linkage exist in c?
Is an array parameter is always "by reference" ?
c program to subtract between two numbers without using '-' sign and subtract function.
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
name the language for writing c compiler?
What is the main difference between calloc () and malloc ()?
Explain what are multidimensional arrays?
Why isnt any of this standardized in c?
#include<stdio.h> int main() { int a[3][3][2]= {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}; printf("%d\n",*(*(*a+1)); return 0; } What will be the output of the above question? And how?
how can i include my own .h file EX:- alex.h like #include<alex.h>, rather than #include"alex.h"
What are the types of pointers?
24.what is a void pointer? 25.why arithmetic operation can’t be performed on a void pointer? 26.differentiate between const char *a; char *const a; and char const *a; 27.compare array with pointer? 28.what is a NULL pointer? 29.what does ‘segmentation violation’ mean? 30.what does ‘Bus Error’ mean? 31.Define function pointers? 32.How do you initialize function pointers? Give an example? 33.where can function pointers be used?