what type of questions arrive in interview over c programming?
No Answer is Posted For this Question
Be the First to Post Answer
What is wrong in this statement? scanf(“%d”,whatnumber);
with out using main how to execute the program?
What is variables in c?
What is the use of getchar() function?
f(x,y,z) { y = y+1; z = z+x; } main() { int a,b; a = 2 b = 2; f(a+b,a,a); print a; } what is the value of 'a' printed
If we have an array of Interger values, find out a sub array which has a maximum value of the array and start and end positions of the array..The sub array must be contiguious. Take the start add to be 4000. For Ex if we have an array arr[] = {-1,-2,-5,9,4,3,-6,8,7,6,5,-3} here the sub array of max would be {8,7,6,5} coz the sum of max contiguous array is 8+7+6+5 = 26.The start and end position is 4014(8) and 4020(5).
5 Answers Microsoft, Motorola,
#include <stdio.h> void main() { int i=-1,j=1,k,l; k=!i&&j; l=!i||j; printf ("%d%d",k,l) ; }
Difference between C and Embedded C?
What is equivalent to ++i+++j?
while initialization of array why we use a[][2] why not a[2][]...?
write a program to count the no of repaeted words in a line?
Is c object oriented?