Compare array data type to pointer data type
No Answer is Posted For this Question
Be the First to Post Answer
What is an example of structure?
Read N characters in to an array . Use functions to do all problems and pass the address of array to function. 1. Print only the alphabets . If in upper case print in lower case vice versa.
what is the hexidecimal number of 4100?
#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
What are loops c?
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?
c program to subtract between two numbers without using '-' sign and subtract function.
What is the difference between procedural and declarative language?
What are control structures? What are the different types?
what are threads ? why they are called light weight processes ? what is the relation between process and threads ?
what is level of tree if leaf node is at level 4.please explain.
Do pointers need to be initialized?