What is the use of typedef in c?
No Answer is Posted For this Question
Be the First to Post Answer
write a program to copy the string using switch case?
15.what is the disadvantage of using macros? 16.what is the self-referential structure? 17.can a union be self-referenced? 18.What is a pointer? 19.What is the Lvalue and Rvalue? 20.what is the difference between these initializations? 21.Char a[]=”string”; 22.Char *p=”literal”; 23.Does *p++ increment p, or what it points to?
Explain what is the most efficient way to store flag values?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
i want to know aptitude questions,technical questions
What is #include in c?
In how much time you will write this c program? Prime nos from 1 to 1000
How can this be legal c?
What is the use of the #include directive?
#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?
Wt are the Buses in C Language
How to write a program to receive an integer & find its octal equivalent by using for loop?