What is #line in c?
No Answer is Posted For this Question
Be the First to Post Answer
write a fuction for accepting and replacing lowercase letter to'Z' with out using inline function.
What is a example of a variable?
A stack can be implemented only using array?if not what is used?
What is the benefit of using #define to declare a constant?
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
What compilation do?
7 Answers Geometric Software, Infosys,
How can I open a file so that other programs can update it at the same time?
Explain what is the benefit of using enum to declare a constant?
int j =15,i; for (i=1; 1<5; ++i) {printf ("%d%d ",j,i); j = j-3; }
what is the output of the following program and explain the answer #include<stdio.h> exp() { main(5) } main(int a) { printf("%d",a); return; }
What's the difference between constant char *p and char * constant p?
Write a C program to print 1 2 3 ... 100 without using loops?