What 'lex' does?
No Answer is Posted For this Question
Be the First to Post Answer
Write a Program to accept different goods with the number, price and date of purchase and display them
What is an example of structure?
How was c created?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
main() { int arr[5]={23,67}; printf("%d%d%d",arr[2],arr[3],arr[4]); }
What is an expression?
write a program to sort the elements in a given array in c language
What are the 5 types of organizational structures?
print out of string in this format; 1. "rajesh" 2. \n 3. %d
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
Tell me a C program to display the following Output? 1 1 1 1 1 2 2 2 2 3 3 3 4 4 5