What is #line used for?
No Answer is Posted For this Question
Be the First to Post Answer
Give the output for the following program. #define STYLE1 char main() { typedef char STYLE2; STYLE1 x; STYLE2 y; clrscr(); x=255; y=255; printf("%d %d\n",x,y); }
how to print 2-D array using a single for loop?
2 Answers Mind Tree, TCS, Value Labs,
a=0; while(a<5) printf("%d\n",a++); how many times does the loop occurs? a.infinite b.5 c.4 d.6
how could explain about job profile
please can some one guide me, to the answer Write a C program to enter 15 numbers as an input from the keyboard and program will find and print odd numbers and their average. i have studied while and do while loop for loop if and else if switch
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
What are volatile variables in c?
c program to subtract between two numbers without using '-' sign and subtract function.
c programs are converted into machine language with the help of a) an interpreter b) a compiler c) an operatinf system d) none of the above
write a c program to find biggest of 3 number without relational operator?
Suppose I want to write a function that takes a generic pointer as an argument and I want to simulate passing it by reference. Can I give the formal parameter type void **, and do something like this? void f(void **); double *dp; f((void **)&dp);