Write a program to print ASCII code for a given digit.
No Answer is Posted For this Question
Be the First to Post Answer
Why is C called a middle-level language?
question-how to run a c programme.
what is the output of the following program? #include<stdio.h> void main() { int x=4,y=3,z; z=x-- -y; printf("\n%d %d %d",x,y,z); }
write c program without semicolon
11 Answers MindTech, TCS, Wipro,
implement NAND gate logic in C code without using any bitwise operatior.
Write any data structure program (stack implementation)
/*program to calculate hra,da in salary if salary less than 10000 then hra15%,da13% otherwise hra20%,da18%/*
Describe the header file and its usage in c programming?
Write a program to interchange two variables without using the third variable?
17 Answers Accenture, College School Exams Tests, Infotech,
What is the difference between break and continue?
a=(1,2,3); b=1,2,3; c=1,(2,3); d=(1,2),3; what's the value of 'a','b','c','d'
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none