What is difference between array and structure in c?
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300
write a program in c to find out the sum of digits of a number.but here is a condition that compiler sums the value from left to right....not right to left..
how to find out the biggest element (or any other operation) in an array which is dynamic. User need not to mention the array size while executing.
What is static identifier?
Explain how can I remove the trailing spaces from a string?
what will be the output for the following main() { printf("hi" "hello"); }
in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above
What is a Deque?
What are the different types of pointers used in c language?
What are local and global variables?
What is selection sort in c?
How can I convert a number to a string?