how to execute a program using if else condition and the
output should enter number and the number is odd only...
No Answer is Posted For this Question
Be the First to Post Answer
how to make c program without a libary? e.g.#include<stdio.h> libary is not in c progaram.
What are the types of bitwise operator?
What does %c mean in c?
Write a program to generate random numbers in c?
How do you print an address?
What is structure padding ?
what is the difference between auto and static keywords
1 Answers cDot, College School Exams Tests, TCS,
Write a program which calculate sum of several number and input it into an array. Then, the sum of all the number in the array is calculated.
How can I handle floating-point exceptions gracefully?
C program code int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
wt is diference between int and int pointer as same as float and float pointer and char and char pointer
Explain how can I manipulate strings of multibyte characters?