What do you understand by normalization of pointers?
No Answer is Posted For this Question
Be the First to Post Answer
What is the purpose of main() function?
write a program in c to read array check element is present or not?
#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,200,100
How can I change their mode to binary?
what is the diference between pointer to the function and function to the pointer?
write a program in c language that uses function to locate and return the smallest and largest integers in an array,number and their position in the array. it should also find and return the range of the numbers , that is , the difference between the largest number and the smallest.
How can I use a preprocessorif expression to ?
Is sizeof a keyword in c?
What are the parts of c program?
#include <stdio.h> void main() { int i=-1,j=1,k,l; k=!i&&j; l=!i||j; printf ("%d%d",k,l) ; }
Which is an example of a structural homology?
Explain what is the benefit of using #define to declare a constant?