What is difference between structure and union in c?
No Answer is Posted For this Question
Be the First to Post Answer
Why is void main used?
#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
Explain how can I manipulate strings of multibyte characters?
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.
please give me some tips for the selection in TCS.
What is c mainly used for?
What is the c language function prototype?
Is void a keyword in c?
write a c program to accept a given integer value and print its value in words
4 Answers Vernalis, Vernalis Systems,
How to set a variable in the environment list?
hOW Can I add character in to pointer array of characters char *a="indian"; ie I want to add google after indian in the char *a