What is the advantage of c?
No Answer is Posted For this Question
Be the First to Post Answer
Once I have used freopen, how can I get the original stdout (or stdin) back?
do u print this format '(((())))'. This brackets is based on user input like 4 or 5 or 6,without using any loop's?
What are the types of assignment statements?
Reverse the bit order in a single macro. eg. i/p = 10010101 --> o/p = 10101001
What are the 32 keywords in c?
find the minimum of three values inputted by the user
how do u find out the number of 1's in the binary representation of a decimal number without converting it into binary(i mean without dividing by 2 and finding out the remainder)? three lines of c code s there it seems...can anyone help
write a program to find the sum of the array elements in c language?
24 Answers ICT, Infosys, Wipro,
What language is c written?
#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.
What is the meaning of int *x[]();?
In a switch statement, explain what will happen if a break statement is omitted?