print ur name without using any semicolon in c/c++....
Answer Posted / gprabha
#include<stdio.h>
void main()
{
int i=1;
if(printf("Prabha"))
{
i++;
}
getch();
}
| Is This Answer Correct ? | 7 Yes | 16 No |
Post New Answer View All Answers
i want to switch my career from quailty assurance engineering to development kindly guide me from which programming language its better for me to start plz refer some courses or certifications too i have an experience of 1.5 yrs in QA field.Kindly guide me
What is operator precedence?
Why is structure padding done in c?
When should you use a type cast?
How can I convert a number to a string?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
Why can arithmetic operations not be performed on void pointers?
What is sizeof int in c?
What is c token?
Write a program to check palindrome number in c programming?
What are identifiers in c?
Explain how do I determine whether a character is numeric, alphabetic, and so on?
What is extern variable in c with example?
What is spark map function?
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.