Explain modulus operator. What are the restrictions of a modulus operator?
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.
What are local static variables? How can you use them?
How will you declare an array of three function pointers where each function receives two ints and returns a float?
what is answer for perfect number????????????????
Is calloc better than malloc?
What is the difference between typeof(foo) and myFoo.GetType()?
What is 2c dna?
Total of how many functions are available in c?
ABCDCBA ABC CBA AB BA A A
Explain what does the function toupper() do?
What is #include conio h?
What is string concatenation in c?