what type of questions arrive in interview over c programming?
What is scope rule in c?
what is the output of the following program? #include<stdio.h> void main() { float x=1.1; while(x==1.1) { printf("\n%f",x); x=x-0.1; } }
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
What is the difference between malloc() and realloc()?
Which is better oop or procedural?
Write a program to print all permutations of a given string.
a.One Cannot Take the address of a Bit Field b.bit fields cannot be arrayed c.Bit-Fields are machine Dependant d.Bit-fields cannot be declared as static Which of the Following Statements are true w.r.t Bit-Fields A)a,b&c B)Only a & b C)Only c D)All
3 Answers Accenture, Digg.com,
What is pass by reference in c?
What are the types of i/o functions?
what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }
12344321 123 321 12 21 1 1 how i print this program??
5 Answers DSR Management, Winit,