How do you define CONSTANT in C?
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 a pointer variable in c language?
what is the difference between static variable and register variable?
Define a structure to store the record of library. The record must consist of at least following fields: Title, Author, Edition, Price, Publisher, and Category. -Define functions authorSearch ( ), TitleSearch ( ) and CategorySearch ( ) to search a book with respect to author, title and category. [There can be more than one book, written by one author, in one category]
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
How do you view the path?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
1.)how to find d most repeated word in a string? string ="how do you do"?? output should be do
1 Answers AAS, Nagarro, Vuram,
C program to perform stack operation using singly linked list
Write a program in c using only loops to print * * * * * *******
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
Explain the use of 'auto' keyword in c programming?