TCS NQT Programming MCQ Ques. Which of this is used to skip one iteration: A) break B) continu…
Read moreTata Consultancy Services is software services consulting company whose headquarter is situated …
Read moreQUESTION - 2 Write a C program to remove consonants from the string. #include<stdio.h>…
Read moreWrite a C-program which will take a word as an input whose maximum length will be 20 and it wil…
Read more#include<stdio.h> int main() { char a[50]; int i=0; printf("Enter a l…
Read moreWrite a C program to find largest number among N numbers using command line arguments. #include …
Read moreQues: To print the sum of all odd numbers within range N1 and N2 (excluding N1 and N2). You can u…
Read more#include<stdio.h> int main(int argc, char * argv[]) { int n1=0,n2=1,n3,i,number; …
Read moreTCS NQT Programming MCQ 1. How many times loop will executed ? #include<stdio.h> int main…
Read more#include <stdio.h> int main(int argc, char * argv[]) { int year; if(argc!=2) {…
Read more#include<stdio.h> int main(int argc,char *argv[]) { int i,j,l,flag=1; if(argc!=2)…
Read more#include<stdio.h> int main(int argc, char * argv[]) { int num, binary_val, decimal_v…
Read more