What are identifiers in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between memcpy and memmove?
Given an array of length N containing integers between 1 and N, determine if it contains any duplicates.
write a program that accepts 3 numbers from the user. dispaly the values in a descending order.
What is bubble sort in c?
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300,200,100
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
how to write optimum code to divide a 50 digit number with a 25 digit number??
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
Write c-code for 5+55+555+5555+55555+555555+5555555. Output will be it's answer...
Stimulate calculators to perform addition,subtraction,multiplication and division on two numbers using if/else statement?
What is the difference between char a[] = "string"; and char *p = "string"; ?
14 Answers Adobe, Honeywell, TCS,
write a c prog for removing duplicate character from an array and sorting remaining elements using a single array