What are loops in c?
No Answer is Posted For this Question
Be the First to Post Answer
what will be the output: main(){char ch;int a=10;printf("%d",ch);}
36 Answers Accenture, TCS, Wipro,
What is the difference between void main() and int main()?
How many types of operators are there in c?
Is it possible to run using programming C for Java Application?
Write a program to display the no of bit difference between any 2 given numbers eg: Num1 will 12->1100 Num2 will 7->0111 the difference in bits are 2.
6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?
5 Write an Algorithm to find the maximum and minimum items in a set of ‘n’ element.
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
how to set Nth bit of variable by using MACRO
Which of these statements are false w.r.t File Functions? i)fputs() ii)fdopen() iii)fgetpos() iv)ferror() A)ii B)i,ii C)iii D)iv
Define macros.
Is there a built-in function in C that can be used for sorting data?