What is d'n in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is difference between the following 2 lines…. int temp = (int)(0x00); int temp = (0x00int);
what are the compilation steps? ( i want inside the compiler )
Is swift based on c?
#include<stdio.h> void main() { int a [5]; for (i=0; i<=4; i++) printf(“%d” ,a[i]); }
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
c program to subtract between two numbers without using '-' sign and subtract function.
WAP to accept basic salary of an employee? Calculate it HRA=25%,DA=30%,PF=30%&net salary display all contents?
6 Answers Finite Infotech, Lovely Professional University, Wipro,
Explain what are run-time errors?
What is a #include preprocessor?
What does void main () mean?
How do I use void main?
main() { int a = 65; printf(“%d %o %x”,a,a,a); } Output 65 101 41 Please explain me.How it is coming like that?