What is wrong with this code?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We Are Student “ Output: "We Are Student"
what is the use of bitfields & where do we use them?
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.
What is zero based addressing?
12344321 123 321 12 21 1 1 how i print this program??
5 Answers DSR Management, Winit,
Can one function call another?
what is the output of below int n=10; (n++)++; printf("%d",n);
Explain low-order bytes.
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
#include<std.h> int main() { char *str[]={"Frogs","Do","Not","Die","They","Croak!"}; printf("%d %d\n",sizeof(str),strlen(str)); ...return 0; } what will the output of the above program?
How do you do dynamic memory allocation in C applications?
enum day = { jan = 1 ,feb=4, april, may} what is the value of may? a)4 b)5 c)6 d)11 e)none of the above