In C language, a variable name cannot contain?
No Answer is Posted For this Question
Be the First to Post Answer
What is putchar() function?
Why is sizeof () an operator and not a function?
How to write a code for random pick from 1-1000 numbers? The output should contain the 10 numbers from the range 1-1000 which should pick randomly, ie ,for each time we run the code we should get different outputs.
if function is declared as static in one source file, if I would like to use the same function in some other source file...is it possible....how ?
What is main void in c?
write a program that will print %d in the output screen??
#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void main( ) { int i, j, temp; i=5; j=10; temp=0; if( i > j) swap( i, j ); printf( "%d %d %d", i, j, temp); }
main() { int x=10,y=15; x=x++; y=++y; printf("%d %d\n",x,y); } output??
19 Answers EBS, Ramco, Sangwin, TCS,
EXPLAIN #INCLUDE<STDIO.H> EXPLAIN #INCLUDE<CONIO.H>
what is the difference between getch() and getchar()?
WAP to accept first name,middle name & last name of a student display its initials?
I have an array of 100 elements. Each element contains some text. i want to: append a star character to the end of every fifth element remove every second character from every tenth element, and… add a line feed (ascii 10) after the 30th character of every array element whose length is greater than 30 characters.