What is call by value in c?
No Answer is Posted For this Question
Be the First to Post Answer
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.
What is getch () for?
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
Is it better to bitshift a value than to multiply by 2?
Explain how can I read and write comma-delimited text?
What do you understand by friend-functions? How are they used?
what is the output of the following program? #include<stdio.h> void main() { int x=4,y=3,z; z=x-- -y; printf("\n%d %d %d",x,y,z); }
what will happen if you free a pointer twice after allocating memory dynamically ?
How can I set an array's size at run time?
Tell me can the size of an array be declared at runtime?
What does #pragma once mean?
How can you be sure that a program follows the ANSI C standard?