print ur name without using any semicolon in c/c++....
Answer Posted / baba kancha
#include<stdio.h>
int main( )
{ if(printf("baba")
{
}
}
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
What is context in c?
What is difference between union All statement and Union?
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
Write a function that will take in a phone number and output all possible alphabetical combinations
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
What is zero based addressing?
What is a file descriptor in c?
What is the code for 3 questions and answer check in VisualBasic.Net?
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
A banker has a seif with a cipher. Not to forget the cipher, he wants to write it coded as following: each digit to be replaced with the difference of 9 with the current digit. The banker chose a cipher. Decipher it knowing the cipher starts with a digit different than 9. I need to write a program that takes the cipher from the keyboard and prints the new cipher. I thought of the following: Take the input from the keyboard and put it into a string or an array. Go through the object with a for and for each digit other than the first, substract it from 9 and add it to another variable. Print the new variable. Theoretically I thought of it but I don't know much C. Could you give me any kind of hint, whether I am on the right track or not?
What is the meaning of ?
Can you explain the four storage classes in C?
Explain how can you determine the size of an allocated portion of memory?