print ur name without using any semicolon in c/c++....
Answers were Sorted based on User's Feedback
Answer / sushma rai
#include<stdio.h>
#include<conio.h>
void main()
{
scanf("%s",printf("sushma"));
}
| Is This Answer Correct ? | 5 Yes | 42 No |
What are the different flags in C? And how they are useful? And give example for each in different consequences?
#define f(x) main() { printf("\n%d",f(2+2)); }
What is macro?
main() { int l=6; switch(l) { default:l=l+2; case 4:l=4; case 5:l++; break; } printf("%d",l); }
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
Write a program to produce the following output in c language? 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
write a c program to find the square of a 5 digit number and print the result.
5 Answers Accenture, Sasken, Vimukti Technologies,
write a c program to change only the 3rd bit of the particular number such that other bits are not affected.. if bitnum=10(say.. it can be any no..
Can a void pointer point to a function?
What is 1d array in c?
program for following output using for loop? 1 2 2 3 3 3 4 4 4 4 5 5 5 5 5
how do you execute a c program in unix.