Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.
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.
main() { int a=5; printf(?%d,%d,%d\n?,a,a< <2,a>>2); } Answer: 5,20,1 please explain this code in detail
name the language for writing c compiler?
Why do we use stdio h and conio h?
What are the preprocessors?
how to print the character with maximum occurence and print that number of occurence too in a string given ?
What are extern variables in c?
What does it mean when a pointer is used in an if statement?
What is typeof in c?
What are data breakpoints?
What is an auto variable in c?
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34