What does 3 periods mean in texting?
No Answer is Posted For this Question
Be the First to Post Answer
Just came across this question, felt worth sharing, so here it is I want you to make a C/C++ program that for any positive integer n will print all the positive integers from 1 up to it and then back again! Let's say n=5 I want the program to print: 1 2 3 4 5 4 3 2 1. Too easy you say? Okay then... You can ONLY USE: 1 for loop 1 printf/cout statement 2 integers( i and n) and as many operations you want. NO if statements, NO ternary operators, NO tables, NO pointers, NO functions!
Explain how are portions of a program disabled in demo versions?
Write a program in c to replace any vowel in a string with z?
Explain is it better to bitshift a value than to multiply by 2?
1 What is a Data Structure?
to find the program of matrix multiplication using arrays
#include<stdio.h> #include<conio.h> void main() {clrscr(); char another='y'; int num; for(;another=='y';) { printf("Enter a number"); scanf("%d",&num); printf("squre of %d is %d",num,num*num); printf("\nwant to enter another number y/n"); scanf("%c",&another); } getch(); } the above code runs only one time.on entering 'y' the screen disappeares.what can i do?
Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?
Program to write some contents into a file using file operations with proper error messages.
write a program that eliminates the value of mathematical constant e by using the formula e=1+1/1!+1/2!+1/3!+
What is c token?
The C language terminator is a.semicolon b.colon c.period d.exclamation mark