how can u print a message without using any library function
in c
Answer / sreekanth
void main()
{
clrscr();
printf("Hello World");
getch();
}
| Is This Answer Correct ? | 5 Yes | 24 No |
Define function pointers?
An entire structure variable can be assigned to another structure variable if __________
3 Answers Sasken, TCS, Tech Mahindra, Wipro,
Why C language is a procedural language?
How does struct work in c?
Write a program to compare two strings without using the strcmp() function
42 Answers Accenture, Arba Minch University,
how to print "hai" in c?
In CMM or CMMI certified organizations,we assess only the standard software processes of the organization. We do not assess the organizations other functional departments like HR or Admin. Then how can we certify the entire organization as CMM level company?? We have assessed only software related activities. Right. There is no relation with other departments like Accounts, HR or Admin. Then how can we claim that the whole company is a CMM certified company?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
what is the output of below pgm? void main() { int i=0; if(i) printf("pass"); else printf("fail"); }
Write a c program to print the even numbers followed by odd numbers in an array without using additional array
What is structure data type in c?
write a program structure to find average of given number