can we print any string in c language without using
semicolon(;)(terminator) in whole program.
Answers were Sorted based on User's Feedback
Answer / anshukumarsrivatsva.
a c program to prrint a string without using a semicolon,
#include<stdio.h>
#include<conio.h>
void main()
{
if(printf("allahabad is a sangam city))
getch();
}
| Is This Answer Correct ? | 0 Yes | 3 No |
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }
how to swap four numbers without using fifth variable?
What math functions are available for integers? For floating point?
How the C program can be compiled?
What is the explanation for prototype function in c?
which one is better structure or union?(other than the space occupied )
What does != Mean in c?
write a program in c language to print your bio-data on the screen by using functions.
6 Answers College School Exams Tests, IBM,
HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????
what is object oriental programing?
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..
What are the features of c languages?