for questions 14,15,16,17 use the following
alternatives:a.int b.char.c.string.d.float
What do you mean by a local block?
WHAT IS PRE POSSESSORS?
What are loops in c?
What is the 'named constructor idiom'?
what is the output of the following program and explain the answer #include<stdio.h> exp() { main(5) } main(int a) { printf("%d",a); return; }
what is the return type of printf
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,
Go through the following code sinippet char a[20]; a="Hello Orcale Test"; will this compile?
How can I read a directory in a C program?
2 Answers Bright Outdoor, Wipro,
What is the size of enum in c?
What is the total generic pointer type?
main() { int i = 10; printf(" %d %d %d \n", ++i, i++, ++i); }