c language interview questions & answer
No Answer is Posted For this Question
Be the First to Post Answer
how to print the character with maximum occurence and print that number of occurence too in a string given ?
develop algorithms to add polynomials (i) in one variable
Sir,please help me out with the output of this programme:- #include<stdio.h> #include<conio.h> void main() { int a=18,b=12,i; for(i=a<b?a:b;a%i||b%i;i--); printf("%d %d",i); }
Where can I get an ansi-compatible lint?
f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=?
What are the different pointer models in c?
Display names and numbers of employees who have 5 years or more experience and salary less than Rs.15000 using array of structures (name, number, experience and salary)
What do you mean by a local block?
When should a type cast be used?
What is the difference between i++ and i+1 ?(in terms of memory)
c program for searching a student details among 10 student details
What are different types of pointers?