What library is sizeof in c?
No Answer is Posted For this Question
Be the First to Post Answer
Why is c used in embedded systems?
How to declare a variable?
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
In which area global, external variables are stored?
what is the output of the program and explain why?? #include<stdio.h> void main ( ) { int k=4,j=0: switch (k) { case 3; j=300; case 4: j=400: case 5: j=500; } printf (ā%d\nā,j); }
who is the editor of 'pokemon'?
wat is the difference between array and pointer?
what will be the result of the following program ? char *gxxx() { static char xxx[1024]; return xxx; } main() { char *g="string"; strcpy(gxxx(),g); g = gxxx(); strcpy(g,"oldstring"); printf("The string is : %s",gxxx()); } a) The string is : string b) The string is :Oldstring c) Run time error/Core dump d) Syntax error during compilation e) None of these
What is the relationship between pointers and data structure?
What are the Advantages of using macro
What is the sizeof () operator?
how to sort two array of characters and make a new array of characters.