What is assignment operator?


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

Post New Answer

More C Interview Questions

x=2,y=6,z=6 x=y==z; printf(%d",x)

13 Answers   Bharat, Cisco, HCL, TCS,


How do I access command-line arguments?

2 Answers   Bosch, Wipro,


Can you return null in c?

0 Answers  


What is multidimensional arrays

0 Answers  


#include<stdio.h> int f(int,int); int main() { printf("%d",f(20,1)); return 0; } int f(int n,int k) { if(n==0) return 0; else if(n%2)return f(n/2,2*k)+k; else return f(n/2,2*k)-k; } how this program is working and generating output as 9....?

1 Answers  






Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon

0 Answers   HCL,


Describe wild pointers in c?

0 Answers  


plz answer..... a program that reads non-negative integer and computes and prints its factorial

2 Answers  


What are the types of pointers?

0 Answers  


what is software?

7 Answers   Wipro,


25. It takes five minutes to pass a rumour from one person to two other persons. The tree of rumour continues. Find how many minutes does it take spread the rumour to 768 persons. ?

11 Answers   CTS, TCS,


Write a program to print fibonacci series using recursion?

0 Answers  


Categories