What are the different types of errors?
No Answer is Posted For this Question
Be the First to Post Answer
5) Write a program that takes a 3 digit number n and finds out whether the number 2^n + 1 is prime, or if it is not prime find out its factors.without using big int and exponential function
main() { enum _tag{ left=10, right, front=100, back}; printf("%d, %d, %d, %d", left, right, front, back); }
Tell me what are bitwise shift operators?
how can we print hellow world programme without using semicolon
What are the three constants used in c?
write a “Hello World” program in “c” without using a semicolon?
What are the string functions? List some string functions available in c.
Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"
study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above
wat s the meaning of (int *)p +4;
write a program to swap two variables a=5 , b= 10 without using third variable
What does the file stdio.h contain?