All Questions

Central Board of Secondary Education Class 12th Examination

Follow
Showing 371 - 373 out of 373 Questions
1486 Views

W.a.p. in c language to calculate power of any number without using string library function.

Debosmitha Bhattacharyya Student Expert 29th Nov, 2018

Hello,

Since you've mentioned "without using recursion" I've written the following code using recursion.

#include <stdio.h>

long power (int num, int pow)

{

    if (pow)

    {

        return (num * power(num, pow - 1));

    }

    return 1;

int main()

{

    int pow, num;

    long result;

    printf("Enter a number: ");

    scanf("%d",

694 Views

Is comedk sllyabus purely based on cbse class 12 sllyabus and if it specify the chapters please

Garima Sihag 16th Sep, 2025

Not purely, the syllabus of COMEDK UGET is drawn from both Class 11 and Class 12 CBSE / equivalent boards. Approximate weightage is around 33% from Class 11 topics, and around 67% from Class 12 topics.

So while a lot of it is from Class 12, you also need Class

The question have been saved in answer later, you can access it from your profile anytime. Access now