What are types of structure?
No Answer is Posted For this Question
Be the First to Post Answer
What are the types of c language?
Do you know the purpose of 'register' keyword?
What is null pointer in c?
The program to allow the characters from the input received and send this function to a function check if the characters between letters a to z is a function of y joins as the characters main and output to otherwise return to the original function of the y characters
while initialization of two dimensional arrays we can initialize like a[][2] but why not a[2][] is there any reason behind this?
Why doesnt that code work?
Is anything faster than c?
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
write a program for 4 4 3 3 3 3 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 2 2 2 2 2 2 3 3 3 3 4 4
What was noalias and what ever happened to it?
What is the full form of getch?
what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }