hi friends how r u as soon in satyam my interview is start
but i m very confusued ta wat i do plz help me frndz wat
can i do plz tell me some question and answers related
with "C" which r asked in the interview .
No Answer is Posted For this Question
Be the First to Post Answer
what is output? main() { #define SQR(x) x++ * ++x int i = 3; printf(" %d %d ",SQR(i),i * SQR(i)); } a)9 27 b)35 60 c)20 60 d)15 175
Write a program to reverse a linked list in c.
1. What will be the output of the following programs. a) #include <stdio.h> Main() { Int x=4; While(x==1) { X=x-1; Printf(ā%dā,x); --x; } }
IS STRUCTURES CAN BE USED WITHIN AN ARRAY?
What is the output of the following program #include<stdio.h> main() { int i=0; fork(); printf("%d",i++); fork(); printf("%d",i++); fork(); wait(); }
What is wrong with this code?
What does printf does?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
What is the difference between printf and scanf in c?
What are identifiers in c?
What is context in c?
what is the difference between. system call and library function?