How do you initialize pointer variables?
No Answer is Posted For this Question
Be the First to Post Answer
Without using main fn and semicolon,print remainder for a given number in C language
Explain how are portions of a program disabled in demo versions?
Describe the header file and its usage in c programming?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
struct tag{ auto int x; static int y; };main() { struct tag s; s.x=4; s.y=5; printf(ā%dā,s.x); }
Where register variables are stored in c?
I have an array of 100 elements, each of which is a random integer. I want to know which of the elements: a) are multiples of 2 b) are multiples of 2 AND 5 c) have a remainder of 3 when divided by 7
What functions are used in dynamic memory allocation in c?
write a progam to display the factors of a given number and disply how many prime numbers are there?
Is javascript written in c?
main() { int i,j,A; for(A=-1;A<=1;A++) prinf("%d\t",!!A); }
What is an array in c?