What is the hardest programming language?


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

Post New Answer

More C Interview Questions

How do you redirect a standard stream?

0 Answers  


What is a macro, and explain how do you use it?

0 Answers  


we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above

0 Answers  


why we shiuld use main keyword in C

5 Answers  


What is a ternary operator in c?

0 Answers  






write a program in c to print **** * * * * ****

1 Answers   TCS,


Is return a keyword in c?

0 Answers  


#&#8206;include&#8236;<stdio.h> void main() { int i; for(i=5;0;i++) { printf("%d",i); } }

2 Answers   Facebook,


#include<stdio.h> void main() { int a [5]; for (i=0; i<=4; i++) printf(ā€œ%dā€ ,a[i]); }

8 Answers  


Write a program to find the number of times that a given word(i.e. a short string) occurs in a sentence (i.e. a long string!). Read data from standard input. The first line is a single word, which is followed by general text on the second line. Read both up to a newline character, and insert a terminating null before processing. Typical output should be: The word is "the". The sentence is "the cat sat on the mat". The word occurs 2 times.

0 Answers  


pick out the odd one out of the following a.malloc() b.calloc() c.free() d.realloc()

2 Answers   TCS, ZenQ,


Write a C program where input is: "My name is xyz". output is: "xyz is name My".

1 Answers   TCS,


Categories