What are the types of operators in c?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

c program for searching a student details among 10 student details

0 Answers  


#include<stdio.h> int SumElement(int *,int); void main(void) { int x[10]; int i=10; for(;i;) { i--; *(x+i)=i; } printf("%d",SumElement(x,10)); } int SumElement(int array[],int size) { int i=0; float sum=0; for(;i<size;i++) sum+=array[i]; return sum; } output?

5 Answers   Ramco,


What is #pragma directive?how it is used in the program? what is its advantages and disadvantages?

2 Answers  


#include<stdio.h> { printf("Hello"); } how compile time affects when we add additional header file <conio.h>.

0 Answers  


find second largest element in array w/o using sorting techniques? use onle one for loop.

15 Answers   BitWise, Zycus Infotech,






Explain the term printf() and scanf() used in c language?

0 Answers  


Do pointers need to be initialized?

0 Answers  


What are bitwise shift operators in c programming?

0 Answers  


Write a code to determine the total number of stops an elevator would take to serve N number of people.

0 Answers   Expedia,


how can i print "hello"

3 Answers  


what are bit fields in c?

0 Answers  


what is the output of below code int x=8,y; x>>=2; y=x; what is y value. NOTE:EXPLANATION IS COMPALSARY with binary bits

2 Answers   Wipro,


Categories