I came across some code that puts a (void) cast before each call to printf. Why?


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

Post New Answer

More C Interview Questions

Write a c pgm for leap year

11 Answers   College School Exams Tests, IBM, TCS,


what is difference between array of characters and string

18 Answers   Accenture, Nest,


#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } Find the output

5 Answers   CitiGroup,


int main() { int x = (2,3,4); int y = 9,10,11; printf("%d %d",x,y); } what would be the output?

7 Answers   Parimal, Wipro,


List some basic data types in c?

0 Answers  






int main() { int i=-1,j=-1;k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d%d%d%d%d",i,j,k,l,m); }

3 Answers   HCL,


what is memory leak?

3 Answers  


what is pointer ?

10 Answers   Kernex Micro Systems,


What is a structure in c language. how to initialise a structure in c?

0 Answers  


What is difference between constant pointer and constant variable?

0 Answers   Hexaware,


how to print 2-D array using a single for loop?

2 Answers   Mind Tree, TCS, Value Labs,


1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321

0 Answers  


Categories